add clean script

This commit is contained in:
2025-08-17 15:02:25 -04:00
parent a29f7d13f7
commit aebce4a473
2 changed files with 16 additions and 2 deletions

7
scripts/clean.sh Executable file
View File

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