From ae1ec4769b3f56a30f713c3f188a11a4cf2bf437 Mon Sep 17 00:00:00 2001 From: Jordan Welsman Date: Wed, 1 Mar 2023 21:32:04 -0600 Subject: [PATCH] build: Edited unbuild script to include updated directory name. --- unbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."