We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c666747 commit 1ebeeacCopy full SHA for 1ebeeac
scripts/docker/install-swift.sh
@@ -2,11 +2,12 @@
2
3
set -euo pipefail
4
5
-curl -s -o swiftly.tar.gz https://download.swift.org/swiftly/linux/swiftly-aarch64.tar.gz
+curl -s -o swiftly.tar.gz "https://download.swift.org/swiftly/linux/swiftly-$(uname -m).tar.gz"
6
tar zxf swiftly.tar.gz
7
rm swiftly.tar.gz
8
-./swiftly init --platform=debian12 --assume-yes --skip-install
+./swiftly init --assume-yes --skip-install
9
10
apt-get -y -qq install libicu-dev libcurl4-openssl-dev libedit-dev libsqlite3-dev libncurses-dev libpython3-dev libxml2-dev uuid-dev git libstdc++-12-dev
11
12
-swiftly install --use 6.1
+echo "Installing Swift..."
13
+swiftly install --progress-file /dev/null --use 6.1
0 commit comments