From af3dd14fe039b539ac16336e571f761173676b3e Mon Sep 17 00:00:00 2001 From: Mikhail Koliada <88318005+mikhailkoliada@users.noreply.github.com> Date: Tue, 23 Aug 2022 18:43:19 +0200 Subject: [PATCH] [macOS] always return True on gfortran check (#6133) --- images/macos/provision/core/gcc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/macos/provision/core/gcc.sh b/images/macos/provision/core/gcc.sh index 0fe468ffb..a7fa06fd0 100644 --- a/images/macos/provision/core/gcc.sh +++ b/images/macos/provision/core/gcc.sh @@ -8,7 +8,7 @@ for gccVersion in $gccVersions; do done # Delete default gfortran link if it exists https://github.com/actions/runner-images/issues/1280 -gfortranPath=$(which gfortran) +gfortranPath=$(which gfortran) || true if [ $gfortranPath ]; then rm $gfortranPath fi