refactor: new start

This commit is contained in:
ivaquero
2026-04-18 01:46:43 +08:00
parent 35e8a21f00
commit b3ecb2708a
12 changed files with 587 additions and 216 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
#!/bin/bash
# Clean build files script
echo "Cleaning build files..."
# Delete files in build directory
if [ -d "build" ]; then
rm -rf build/*
echo "Build directory cleaned"
fi
# Delete .app bundle
if [ -d "flock.app" ]; then
rm -rf flock.app
echo "flock.app deleted"
fi
echo "Cleanup complete!"