Skip to content

Commit 3af07d9

Browse files
committed
script/clean-xcode.sh
Because it misbehaves much more often then SPM. No need to clean SPM
1 parent 045afc0 commit 3af07d9

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

script/clean-project.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,5 @@
22
cd "$(dirname "$0")/.."
33
source ./script/setup.sh
44

5-
./script/check-uncommitted-files.sh
6-
5+
./clean-xcode.sh
76
git clean -ffxd
8-
rm -rf ~/Library/Developer/Xcode/DerivedData/AeroSpace-*
9-
10-
rm -rf AeroSpace.xcodeproj
11-
./generate.sh

script/clean-xcode.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
cd "$(dirname "$0")/.."
3+
source ./script/setup.sh
4+
5+
./script/check-uncommitted-files.sh
6+
7+
git clean -ffxd
8+
rm -rf ~/Library/Developer/Xcode/DerivedData/AeroSpace-*
9+
rm -rf ./.xcode-build
10+
11+
rm -rf AeroSpace.xcodeproj
12+
./generate.sh

0 commit comments

Comments
 (0)