Skip to content

Commit f18f171

Browse files
author
Tim De Jong
committed
Skip install of default toolchain when installing swiftly
1 parent ae9d2f8 commit f18f171

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,11 @@ RUN pip3 install --break-system-packages \
8787

8888
# Install Swiftly (Swift toolchain manager)
8989
# Install Swiftly (Swift toolchain manager) using the new manual method
90+
# Skip install of default toolchain when installing swiftly
9091
RUN ARCH=$(uname -m) && \
9192
curl -f -L -O "https://download.swift.org/swiftly/linux/swiftly-${ARCH}.tar.gz" && \
9293
tar zxf "swiftly-${ARCH}.tar.gz" && \
93-
./swiftly init --quiet-shell-followup && \
94+
./swiftly init --quiet-shell-followup --skip-install && \
9495
rm "swiftly-${ARCH}.tar.gz"
9596

9697
# Add swiftly to the PATH. **Note: The install path is different!**

0 commit comments

Comments
 (0)