Updated godot language server args; added save script; small cleanup

This commit is contained in:
2026-03-31 20:53:57 -05:00
parent 38951379a4
commit 9115b93eda
4 changed files with 28 additions and 5 deletions

17
Docker/scripts/save.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
. CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
cd "${SCRIPTPATH}"
echo "Working Dir: " $(pwd)
podman save -o "${CONTAINER}" $1
}
main $@;