fix clean.sh

This commit is contained in:
2025-08-17 15:05:35 -04:00
parent aebce4a473
commit 0943fa367f

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Delete dist directory
if [ -z "dist" ]; then if [ -d "dist" ]; then
echo "Deleting [dist] directory"; echo "Deleting [dist] directory";
rm -rf dist/ rm -rf dist/
fi fi