Skip to content

Commit b155e3e

Browse files
committed
Don't use contexts for environment variables
1 parent 06dab97 commit b155e3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ jobs:
9292
working-directory: ${{ github.workspace }}/build
9393
run: |
9494
cmake .. -G Ninja ^
95-
-DCMAKE_Fortran_COMPILER="${{ env.FC }}" ^
96-
-DCMAKE_INSTALL_PREFIX="${{ env.LIBRARY_PREFIX }}" ^
95+
-DCMAKE_Fortran_COMPILER=$env.FC ^
96+
-DCMAKE_INSTALL_PREFIX=$env.LIBRARY_PREFIX ^
9797
-DCMAKE_BUILD_TYPE=Release
9898
cmake --build . --target install --config Release
9999

0 commit comments

Comments
 (0)