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

@@ -3,6 +3,7 @@
====================== ======================
Version Description Version Description
1.2.04......Fix for missing variable affecting embedded platforms, thanks to tga.
1.2.03......Added post upgrade function for convenience, cleanup obsolete code. 1.2.03......Added post upgrade function for convenience, cleanup obsolete code.
1.2.02......Always execute extension script after upgrade from WebGUI, code changes. 1.2.02......Always execute extension script after upgrade from WebGUI, code changes.
1.2.01......Fix extension script missing statement preventing for new installs. 1.2.01......Fix extension script missing statement preventing for new installs.

View File

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

View File

@@ -1 +1 @@
1.2.03 1.2.04