Skip to content

Commit

Permalink
Use cmake -E for rm -rf
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreinking committed Aug 30, 2024
1 parent 7f8d68d commit c9d6f17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
if: matrix.os != 'ubuntu-latest' && steps.cache-flatbuffers.outputs.cache-hit != 'true'
run: |
cmake --build flatbuffers-build --target install
rm -rf flatbuffers-src flatbuffers-build
cmake -E rm -rf flatbuffers-src flatbuffers-build
########################################################################
# wabt
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
if: matrix.os != 'ubuntu-latest' && steps.cache-wabt.outputs.cache-hit != 'true'
run: |
cmake --build wabt-build --target install
rm -rf wabt-src wabt-build
cmake -E rm -rf wabt-src wabt-build
########################################################################
# LLVM
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
if: matrix.os != 'ubuntu-latest' && steps.cache-llvm.outputs.cache-hit != 'true'
run: |
cmake --build llvm-build --target install
rm -rf llvm-src llvm-build
cmake -E rm -rf llvm-src llvm-build
########################################################################
# Wheels
Expand Down

0 comments on commit c9d6f17

Please sign in to comment.