[Ubuntu] remove gfortran symlink from brew (#6276)

This commit is contained in:
Mikhail Koliada
2022-09-21 10:44:01 +02:00
committed by GitHub
parent 4369f2be15
commit 4a83f39eb5

View File

@@ -43,4 +43,10 @@ for package in $brew_packages; do
fi
done
gfortran=$(brew --prefix)/bin/gfortran
# Remove gfortran symlink, not to conflict with system gfortran
if [[ -e $gfortran ]]; then
rm $gfortran
fi
invoke_tests "Tools" "Homebrew"