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 e0249dc commit f841090Copy full SHA for f841090
setup-fortran.sh
@@ -100,12 +100,10 @@ install_gcc_choco()
100
mv /c/mingw64 "$RUNNER_TEMP/"
101
# ...and install selected version
102
case $version in
103
- latest|13)
104
- if [ "$version" == "latest" ]; then
105
- choco install mingw --force
106
- else
107
- choco install mingw --version 13.2.0 --force
108
- fi
+ latest)
+ choco install mingw --force
+ 13)
+ choco install mingw --version 13.2.0 --force
109
# mingw 13 on Windows doesn't create shims (http://disq.us/p/2w5c5tj)
110
# so hide Strawberry compilers and manually add mingw bin dir to PATH
111
mkdir "$RUNNER_TEMP/strawberry"
0 commit comments