Skip to content

Commit

Permalink
Fix typo when calling bash
Browse files Browse the repository at this point in the history
use 'set -x' instead
  • Loading branch information
julesghub committed Jan 8, 2025
1 parent 35b5c94 commit dd82dbe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions clean.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/usr/bin/env bash -x
#!/usr/bin/env bash

set -x # show commands

rm -fr build
find . -name \*.so -exec rm {} +
find . -name __pycache__ -exec rm -r {} +
find . -name '*.egg-info' -exec rm -r {} +
rm -rf .pytest_cache
## To remove git
## To remove untracked git files
#git clean -dfX ; git clean -dfx

0 comments on commit dd82dbe

Please sign in to comment.