We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
install.sh
1 parent 83b4412 commit c60802cCopy full SHA for c60802c
install.sh
@@ -71,14 +71,9 @@ if [ $? -ne 0 ]; then
71
exit 2
72
fi
73
74
-LATEST_RELEASE=$(get_latest_release "fortran-lang/fpm" "$FETCH")
75
-
76
-# Fallback to a latest known release if network timeout
77
-if [ -z "$LATEST_RELEASE" ]; then
78
- LATEST_RELEASE="0.8.0"
79
-fi
80
81
-SOURCE_URL="https://github.com/fortran-lang/fpm/releases/download/v${LATEST_RELEASE}/fpm-${LATEST_RELEASE}.F90"
+# Use 0.8.0 too bootstrap
+BOOTSTRAP_RELEASE="0.8.0"
+SOURCE_URL="https://github.com/fortran-lang/fpm/releases/download/v${BOOTSTRAP_RELEASE}/fpm-${BOOTSTRAP_RELEASE}.F90"
82
BOOTSTRAP_DIR="build/bootstrap"
83
84
if [ -z ${FC+x} ]; then
0 commit comments