diff options
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -34,6 +34,9 @@ if [ ${UID} -ne 0 ]; then SUDO="doas" elif command_exists sudo; then SUDO="sudo" + else + echo "Requires doas or sudo to be installed." + exit 1 fi fi |