Skip to content

Commit

Permalink
Avoid mkdir error in CI workflow by using -p
Browse files Browse the repository at this point in the history
  • Loading branch information
nagajaideep committed Dec 1, 2024
1 parent cea030c commit b68eca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build C++ Code with Coverage
run: |
mkdir build
mkdir -p build
cd build
cmake -DCMAKE_CXX_FLAGS="--coverage" ..
make
Expand Down

0 comments on commit b68eca0

Please sign in to comment.