exit install script when running from planned install directory
This commit is contained in:
parent
8f7f23c938
commit
efbaf81190
|
@ -42,6 +42,11 @@ bindir="${installdir}/${app^}" # Full Path to Install Location
|
||||||
datadir="/var/lib/$app/" # {Update me if needed} AppData directory to use
|
datadir="/var/lib/$app/" # {Update me if needed} AppData directory to use
|
||||||
app_bin=${app^} # Binary Name of the app
|
app_bin=${app^} # Binary Name of the app
|
||||||
|
|
||||||
|
if [ "$bindir" == $(dirname -- "$( readlink -f -- "$0"; )") ]; then
|
||||||
|
echo "You should not run this script from the intended install directory. The script will exit. Please re-run it from another directory"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
# Prompt User
|
# Prompt User
|
||||||
read -r -p "What user should ${app^} run as? (Default: $app): " app_uid < /dev/tty
|
read -r -p "What user should ${app^} run as? (Default: $app): " app_uid < /dev/tty
|
||||||
app_uid=$(echo "$app_uid" | tr -d ' ')
|
app_uid=$(echo "$app_uid" | tr -d ' ')
|
||||||
|
|
Loading…
Reference in New Issue