fixing beastmaster and default lua install

This commit is contained in:
uprightbass360
2025-11-02 18:08:17 -05:00
parent 7f74c56928
commit e77f916ec5
3 changed files with 42 additions and 6 deletions

View File

@@ -16,11 +16,11 @@ fi
echo "📜 copy-standard-lua: Processing $MODULE_NAME"
# Create target directory
mkdir -p "$LUA_SCRIPTS_TARGET" 2>/dev/null || {
echo " copy-standard-lua: Cannot create target directory $LUA_SCRIPTS_TARGET"
exit 1
}
# Create target directory if possible
if ! mkdir -p "$LUA_SCRIPTS_TARGET" 2>/dev/null; then
echo " copy-standard-lua: Target directory $LUA_SCRIPTS_TARGET not accessible (will be copied during container build)"
exit 0
fi
copied_count=0