Skip to content

Commit 6958dc1

Browse files
committed
ci: fix bash array
1 parent 7d7bdfb commit 6958dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
# Windows runs out of RAM when building binaries with LLVM
133133
run: |
134134
flags=()
135-
[[ "${{ matrix.target }}" == *windows* ]] && flags+="-j2"
135+
[[ "${{ matrix.target }}" == *windows* ]] && flags+=(-j2)
136136
cargo build --release --bins --target ${{ matrix.target }} "${flags[@]}"
137137
138138
- name: Archive binaries

0 commit comments

Comments
 (0)