From 0943fa367f98ee5f0a4846d693e4548e1aaee258 Mon Sep 17 00:00:00 2001 From: Alexander Zinn Date: Sun, 17 Aug 2025 15:05:35 -0400 Subject: [PATCH] fix clean.sh --- scripts/clean.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/clean.sh b/scripts/clean.sh index 22525de..c0b703b 100755 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash - -if [ -z "dist" ]; then +# Delete dist directory +if [ -d "dist" ]; then echo "Deleting [dist] directory"; rm -rf dist/ -fi +fi \ No newline at end of file