From 7969d852d9638e4285ce9b2120a3ff30fd18646b Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Tue, 9 Jun 2026 22:39:51 +0100 Subject: [PATCH] fix config --- .circleci/config.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0505b975..0d550ab1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -625,14 +625,12 @@ jobs: # Game data cp -a $HOME/MBHaxe/data "$DIST/" - cat > "$DIST/run-mbu.sh" <<'RUNEOF' - #!/usr/bin/env bash - set -e - DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" - export LD_LIBRARY_PATH="$DIR${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" - cd "$DIR" - exec "$DIR/marblegame" "$@" - RUNEOF + echo '#!/usr/bin/env bash' > "$DIST/run-mbu.sh" + echo 'set -e' >> "$DIST/run-mbu.sh" + echo 'DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"' >> "$DIST/run-mbu.sh" + echo 'export LD_LIBRARY_PATH="$DIR${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"' >> "$DIST/run-mbu.sh" + echo 'cd "$DIR"' >> "$DIST/run-mbu.sh" + echo 'exec "$DIR/marblegame" "$@"' >> "$DIST/run-mbu.sh" chmod +x "$DIST/run-mbu.sh"