11 lines
151 B
Plaintext
11 lines
151 B
Plaintext
|
|
#!/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
|
||
|
|
|