fixed non encountered for errors by configurator

This commit is contained in:
2026-01-19 12:21:27 +01:00
parent 5ab497b832
commit 0df325b99e
3 changed files with 15 additions and 7 deletions

View File

@@ -57,6 +57,19 @@ fi
echo "Updating globalVars.hpp..."
sed -i "s/DemoProject/$PROJECT_NAME/g" "$GLOBAL_VARS_PATH"
# -----------------------------
# launch.json anpassen
# -----------------------------
GLOBAL_VARS_PATH=".vscode/launch.json"
if [ ! -f "$GLOBAL_VARS_PATH" ]; then
echo "globalVars.hpp not found in root."
exit 1
fi
echo "Updating globalVars.hpp..."
sed -i "s/DemoProject/$PROJECT_NAME/g" "$GLOBAL_VARS_PATH"
# -----------------------------
# Git Submodule aktualisieren
# -----------------------------