11 lines
151 B
Bash
Executable file
11 lines
151 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
if $(test "$(whoami)" != "root")
|
|
then
|
|
echo "need to be root" > /dev/stderr
|
|
exit 1
|
|
else
|
|
cp build/html-docwrap /usr/local/bin/
|
|
fi
|
|
|