Skip to content

Commit

Permalink
build: Edited unbuild script to include updated directory name.
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanWelsman committed Mar 2, 2023
1 parent 5954c99 commit ae1ec47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unbuild
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ then
rm -rf dist # remove distribution directory if exists
find . -name __pycache__ -type d -print0|xargs -0 rm -r -- # remove all pycache directories
find . -name .pytest_cache -type d -print0|xargs -0 rm -r -- # remove all pytest cache directories
find . -name modular_json.egg-info -type d -print0|xargs -0 rm -r -- # remove all egg-info directories
find . -name openjson.egg-info -type d -print0|xargs -0 rm -r -- # remove all egg-info directories
echo "Project successfully unbuilt."
else
echo "Operation aborted."
Expand Down

0 comments on commit ae1ec47

Please sign in to comment.