From 0f5d65774a9000aab1cfbb54b5ebd37fc438051f Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Wed, 13 Jul 2022 14:48:00 +0200 Subject: [PATCH] [godot] Fix build script. --- spine-godot/build/build.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spine-godot/build/build.sh b/spine-godot/build/build.sh index c93b0529f..7810b3a20 100755 --- a/spine-godot/build/build.sh +++ b/spine-godot/build/build.sh @@ -61,8 +61,10 @@ else target="$target vsproj=yes livepp=$LIVEPP" fi scons $target compiledb=yes custom_modules="../spine_godot" --jobs=$cpus - if [[ "$OSTYPE" == "linux-gnu"* ] && [ "$target" = "release_debug" ]]; then - strip godot.x11.opt.tools.64 + if [[ "$OSTYPE" == "linux-gnu"* ]]; then + if [ "$target" = "release_debug" ]; then + strip godot.x11.opt.tools.64 + fi fi fi popd