Don't clean SPM dependencies in release script

This commit is contained in:
Peter Steinberger 2025-06-19 03:04:13 +02:00
parent 39720c7229
commit 32949dd13a
2 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,7 @@
// VibeTunnel Version Configuration
// This file contains the version and build number for the app
MARKETING_VERSION = 1.0-beta.2
MARKETING_VERSION = 1.0.0-beta.2
CURRENT_PROJECT_VERSION = 104
// Domain and GitHub configuration

View file

@ -152,7 +152,8 @@ echo ""
echo -e "${BLUE}📋 Step 2/8: Cleaning build directory...${NC}"
rm -rf "$PROJECT_ROOT/build"
rm -rf "$PROJECT_ROOT/DerivedData"
rm -rf "$PROJECT_ROOT/.build"
# Don't remove .build as it contains SPM dependencies
# rm -rf "$PROJECT_ROOT/.build"
rm -rf ~/Library/Developer/Xcode/DerivedData/VibeTunnel-*
echo "✓ Cleaned all build artifacts"