Skip to content

Commit b68eca0

Browse files
committed
Avoid mkdir error in CI workflow by using -p
1 parent cea030c commit b68eca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
- name: Build C++ Code with Coverage
4242
run: |
43-
mkdir build
43+
mkdir -p build
4444
cd build
4545
cmake -DCMAKE_CXX_FLAGS="--coverage" ..
4646
make

0 commit comments

Comments
 (0)