From efbaf81190bda83fc4a04e25bea659f8f2043037 Mon Sep 17 00:00:00 2001 From: Stevie Robinson Date: Fri, 5 Jan 2024 19:43:31 +0100 Subject: [PATCH] exit install script when running from planned install directory --- distribution/debian/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/distribution/debian/install.sh b/distribution/debian/install.sh index 01cce59f1..5d0d34b37 100644 --- a/distribution/debian/install.sh +++ b/distribution/debian/install.sh @@ -42,6 +42,11 @@ bindir="${installdir}/${app^}" # Full Path to Install Location datadir="/var/lib/$app/" # {Update me if needed} AppData directory to use 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 read -r -p "What user should ${app^} run as? (Default: $app): " app_uid < /dev/tty app_uid=$(echo "$app_uid" | tr -d ' ')