Skip to content

Commit

Permalink
build: Added egg info directories to unbuild script.
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanWelsman committed Feb 6, 2023
1 parent c45da60 commit 13e8a46
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 @@ -14,9 +14,9 @@ if [[ $REPLY =~ ^[Yy]$ ]]
then
rm -rf build # remove build directory if exists
rm -rf dist # remove distribution directory if exists
rm -rf nexport/nexport.egg-info # remove egg info 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 nexport.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 13e8a46

Please sign in to comment.