Skip to content

Commit 400ffa6

Browse files
authored
Update action.yml
Correct a missing brace in the URL selection.
1 parent 42aaa73 commit 400ffa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ runs:
234234
} else {
235235
if ("${{ inputs.build_arch }}" -eq "amd64") {
236236
Invoke-Installer -URL "https://download.swift.org/${{ inputs.branch }}/windows10/swift-${{ inputs.tag }}/swift-${{ inputs.tag }}-windows10.exe" -InstallArgs ("/quiet")
237-
else {
237+
} else {
238238
Invoke-Installer -URL "https://download.swift.org/${{ inputs.branch }}/windows10-${{ inputs.build_arch }}/swift-${{ inputs.tag }}/swift-${{ inputs.tag }}-windows10-${{ inputs.build_arch }}.exe" -InstallArgs ("/quiet")
239239
}
240240
}

0 commit comments

Comments
 (0)