Skip to content

Commit

Permalink
tools: Remove linux 32 bit from update generation scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmitti committed Jul 30, 2023
1 parent ae9a8a8 commit a2fd003
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/make_c4us.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/make_combined_c4us.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a2fd003

Please sign in to comment.