Skip to content

Commit b051d85

Browse files
committed
CI: Fix a minor scripting error
1 parent c9ca4ee commit b051d85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
sudo apt update
158158
#sudo apt list -a 'gfortran-*'
159159
sudo apt install -y build-essential
160-
if [[ ${COMPILER_VERSION} < 15 ]] ; then \
160+
if (( ${COMPILER_VERSION} < 15 )) ; then \
161161
sudo apt install -y gfortran-${COMPILER_VERSION} ; \
162162
else \
163163
curl -L https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh -o install-homebrew.sh ; \

0 commit comments

Comments
 (0)