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 39421c4 commit 0091963Copy full SHA for 0091963
prerequisites/install-functions/find_or_install.sh
@@ -266,7 +266,7 @@ find_or_install()
266
info "$this_script: Checking whether $executable in PATH is version $(./build.sh -V gcc) or later..."
267
$executable -o acceptable_compiler acceptable_compiler.f90 || true;
268
$executable -o print_true print_true.f90 || true;
269
- if [[ -f ./accepatable_compiler && -f ./print_true ]]; then
+ if [[ -f ./acceptable_compiler && -f ./print_true ]]; then
270
is_true=$(./print_true)
271
acceptable=$(./acceptable_compiler)
272
rm acceptable_compiler print_true
0 commit comments