From 13e8a4646e6d4d9412201f5eb4b7d5a3688f6d40 Mon Sep 17 00:00:00 2001 From: Jordan Welsman Date: Mon, 6 Feb 2023 11:46:37 -0800 Subject: [PATCH] build: Added egg info directories to unbuild script. --- unbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unbuild b/unbuild index 145e6a9..93fce44 100755 --- a/unbuild +++ b/unbuild @@ -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."