Skip to content

Commit 11d6ea3

Browse files
authored
fix quoting foible
1 parent 3471358 commit 11d6ea3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/cmake-errors.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,12 @@ jobs:
154154
155155
- name: Generate project files
156156
run: |
157-
cmake -S "${{ matrix.src-dir || '.' }}" -B "${{ matrix.build-dir || '.' }}" "${{ matrix.cmake-args }}" \
158-
-DMULLE_SDK_PATH="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}" \
159-
-DCMAKE_BUILD_TYPE="${{ matrix.build-config || 'Release' }}" \
160-
-DCMAKE_PREFIX_PATH="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}"
157+
cmake ${{ matrix.cmake-args }} \
158+
-S "${{ matrix.src-dir || '.' }}" \
159+
-B "${{ matrix.build-dir || '.' }}" \
160+
-DMULLE_SDK_PATH="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}" \
161+
-DCMAKE_BUILD_TYPE="${{ matrix.build-config || 'Release' }}" \
162+
-DCMAKE_PREFIX_PATH="${{ steps.set-install-dir.outputs.CMAKE_INSTALL_DIR }}"
161163
env:
162164
CC: ${{ matrix.compiler }}
163165
CFLAGS: ${{ matrix.cflags }}

0 commit comments

Comments
 (0)