mirror of
https://github.com/seemueller-io/yachtpit.git
synced 2025-09-08 22:46:45 +00:00
init
This commit is contained in:
9
cleanup.sh
Executable file
9
cleanup.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/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!"
|
Reference in New Issue
Block a user