mirror of
https://github.com/seemueller-io/yachtpit.git
synced 2025-09-08 22:46:45 +00:00
9 lines
308 B
Bash
Executable File
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!" |