mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-24 14:47:39 +00:00
Don't clean SPM dependencies in release script
This commit is contained in:
parent
39720c7229
commit
32949dd13a
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue