Skip to content

Commit

Permalink
Missing fi;
Browse files Browse the repository at this point in the history
  • Loading branch information
badumbatish committed May 13, 2024
1 parent 75c27d7 commit 7af9f44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ jobs:
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
if [ "${{ matrix.os }}" == "windows-latest" ]; then
if [ ${{ matrix.os }} == 'windows-latest' ]; then
cmake -DTEST=ON -Dgtest_disable_pthreads=ON -B ${{github.workspace}}/build
else
cmake -DTEST=ON -B ${{github.workspace}}/build
fi;
shell: bash


Expand Down

0 comments on commit 7af9f44

Please sign in to comment.