Fix startup if not in directory.

This commit is contained in:
redxef 2021-09-29 18:09:00 +02:00
parent bd3c482d90
commit 7213b9be35

16
start
View file

@ -15,9 +15,23 @@ if [[ -z "$DEBUG" ]]; then
DEBUG=
fi
# Sudo prompt
if [[ -n "$SUDO" ]]; then
true
elif [[ -t 1 ]]; then
SUDO=sudo
else
export SUDO_ASKPASS=/usr/lib/ssh/ssh-askpass
SUDO='sudo --askpass'
fi
if ! which "$SUDO" >/dev/null 2>&1; then
SUDO=sudo
fi
set -u
SUDO=sudo
cd "$(dirname "$0")"
$SUDO true