Skip to content

Commit

Permalink
Fixing envs in commands
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Jan 10, 2025
1 parent 6609203 commit 1b6657f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
if: (matrix.os == 'macos-13') || (matrix.os == 'macos-14')
run: |
# Symlink the correct gfortran compiler
ln -s '$HOMEBREW_PREFIX/bin/gfortran-13' '$HOMEBREW_PREFIX/bin/gfortran'
ln -s $HOMEBREW_PREFIX/bin/gfortran-13 $HOMEBREW_PREFIX/bin/gfortran
# Install OMP libraries
brew install libomp
# Link environments to env for later us with cibuildwheel
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
if: (matrix.os == 'macos-13') || (matrix.os == 'macos-14')
run: |
# Symlink the correct gfortran compiler
ln -s '$HOMEBREW_PREFIX/bin/gfortran-13' '$HOMEBREW_PREFIX/bin/gfortran'
ln -s $HOMEBREW_PREFIX/bin/gfortran-13 $HOMEBREW_PREFIX/bin/gfortran
# Install OMP libraries
brew install libomp
# Link environments to env for later us with cibuildwheel
Expand Down

0 comments on commit 1b6657f

Please sign in to comment.