diff --git a/unbuild b/unbuild index eea3759..b3c83fd 100755 --- a/unbuild +++ b/unbuild @@ -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."