Fix quoting issues in bin/

This commit is contained in:
David Tomaschik
2025-09-03 14:52:33 -07:00
parent 61d00103bf
commit dea3f289c2
5 changed files with 11 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ fi
if [ `whoami` != "root" ] ; then
if which sudo >/dev/null 2>&1 ; then
sudo $0 $*
sudo "$0" "$@"
exit
fi
echo "Sorry, this requires root." >&2