Files
yachtpit/cleanup.sh
geoffsee 4c6c36eff1 init
2025-06-30 12:03:59 -04:00

9 lines
308 B
Bash
Executable File

#!/usr/bin/env bash
# Clean up build artifacts and temporary directories
echo "Cleaning up build artifacts and temporary directories..."
cargo clean
# Remove persisted data
find . -name "target" -type d -prune -exec rm -rf {} \;
find . -name "dist" -type d -prune -exec rm -rf {} \;
echo "Cleanup complete!"