Skip to content

Commit 7e34c73

Browse files
committed
fix bash conditional
1 parent d7f4a41 commit 7e34c73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-spack-nodeps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
spack add binutils@2.41
7171
spack add sst-core@${{ matrix.version }}
7272
spack add sst-elements@${{ matrix.version }}
73-
if [[ "${{ matrix.version }}" != "13.1.0" ]] && [[ "$(uname)" != "Darwin" ]]; then
73+
if ! [[ "${{ matrix.version }}" == "13.1.0" ]] && [[ "$(uname)" == "Darwin" ]]; then
7474
spack add sst-macro@${{ matrix.version }}
7575
fi
7676
spack concretize --reuse --force

0 commit comments

Comments
 (0)