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