From a2fd00374194b2e6220558e6c06657577c8d480b Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Sun, 30 Jul 2023 21:34:36 +0200 Subject: [PATCH] tools: Remove linux 32 bit from update generation scripts --- tools/make_c4us.sh | 2 +- tools/make_combined_c4us.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/make_c4us.sh b/tools/make_c4us.sh index 98efe3c6e..3b04f37e5 100755 --- a/tools/make_c4us.sh +++ b/tools/make_c4us.sh @@ -80,7 +80,7 @@ RequireVersion=$OLDOBJVERSION EOF ) -for PLATFORM in "win32" "win64" "linux" "linux64" "mac"; do +for PLATFORM in "win32" "win64" "linux64" "mac"; do if [ -d "$TARGET_DIR/$PLATFORM" ]; then rm -r "$TARGET_DIR/$PLATFORM" fi diff --git a/tools/make_combined_c4us.sh b/tools/make_combined_c4us.sh index 658c05768..8bc31a0b6 100755 --- a/tools/make_combined_c4us.sh +++ b/tools/make_combined_c4us.sh @@ -45,7 +45,7 @@ function mac() { linux "$@" } -for PLATFORM in "win32" "win64" "linux" "linux64" "mac"; do +for PLATFORM in "win32" "win64" "linux64" "mac"; do if [ -d "$TARGET_DIR/$PLATFORM" ]; then rm -r "$TARGET_DIR/$PLATFORM" fi