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 443619c commit 154ef74Copy full SHA for 154ef74
scripts/prep-gh-action.sh
@@ -28,8 +28,10 @@ if [ "$installSwiftly" == true ]; then
28
echo "Installing selected swift toolchain"
29
swiftly install --post-install-file=post-install.sh
30
31
- echo "Performing swift toolchain post-installation"
32
- chmod u+x post-install.sh && ./post-install.sh
+ if [ -f post-install.sh ]; then
+ echo "Performing swift toolchain post-installation"
33
+ chmod u+x post-install.sh && ./post-install.sh
34
+ fi
35
36
echo "Displaying swift version"
37
swift --version
0 commit comments