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 bfbd05f commit 609cafeCopy full SHA for 609cafe
.github/setup-swift/action.yml
@@ -19,8 +19,8 @@ runs:
19
else # We do not run this step on Windows.
20
PLATFORM="linux64"
21
fi
22
- SWIFT_EXTRACTOR_DIR=$("$CODEQL_PATH" resolve languages --format json | jq -r '.swift[0]')
23
- VERSION=$($SWIFT_EXTRACTOR_DIR/tools/$PLATFORM/extractor --version | awk '/version/ { print $3 }')
+ SWIFT_EXTRACTOR_DIR="$("$CODEQL_PATH" resolve languages --format json | jq -r '.swift[0]')"
+ VERSION="$("$SWIFT_EXTRACTOR_DIR/tools/$PLATFORM/extractor" --version | awk '/version/ { print $3 }')"
24
# Specify 5.7.0, otherwise setup Action will default to latest minor version.
25
if [ $VERSION = "5.7" ]; then
26
VERSION="5.7.0"
0 commit comments