Skip to content

Commit 482e703

Browse files
committed
correct x86 handling in installer script
1 parent f49e408 commit 482e703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/install_untested_nightly_swift.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ set -euo pipefail
1717
echo "Download [nightly] [untested] Swift toolchain for: $(uname -m)"
1818

1919
ARCH="$(arch)"
20-
if [[ "$ARCH" = "i386" ]]; then
20+
if [[ "$ARCH" = "i386" || "$ARCH" = "x86_64" ]]; then
2121
SWIFT_UNTESTED_TOOLCHAIN_JOB_URL="https://ci.swift.org/job/oss-swift-package-ubuntu-22_04/lastSuccessfulBuild/consoleText"
2222
else
2323
SWIFT_UNTESTED_TOOLCHAIN_JOB_URL="https://ci.swift.org/job/oss-swift-package-ubuntu-22_04-aarch64/lastSuccessfulBuild/consoleText"

0 commit comments

Comments
 (0)