Fix for missing variable, thanks to tga

Fix for missing variable affecting embedded platforms, thanks to @tga.
This commit is contained in:
JRGTH
2025-09-15 20:14:46 -04:00
parent d70bc5a15b
commit 7362708895
3 changed files with 3 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ ARG="${2}"
# Load bastille configuration file.
if [ -f "${BASTILLECONF}" ]; then
. /${BASTILLECONF}
elif [ -f "${BASTILLECONF}" ]; then
elif [ -f "${INSTALLPATH}/${BASTILLECONF}" ]; then
. /${INSTALLPATH}/${BASTILLECONF}
fi