We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a61b832 commit a52d418Copy full SHA for a52d418
Makefile
@@ -5,8 +5,17 @@ test: test-swift
5
test-swift:
6
swift test --parallel
7
8
+# Remove build artifacts while tolerating SourceKit-locked files
9
clean:
- rm -rf .build
10
+ @echo "Cleaning build artifacts..."
11
+ @rm -rf .build/* 2>&1 | grep -v "Permission denied" || true
12
+ @echo "Checking remaining build artifacts..."
13
+ @if [ -d .build ]; then \
14
+ ls -R .build 2>/dev/null || echo "Unable to list some directories"; \
15
+ else \
16
+ echo "Build directory completely removed"; \
17
+ fi
18
+ @echo "Build artifacts cleaned (ensure that any remaining files listed above won't affect new builds, e.g. SourceKit files)"
19
20
test-swift-syntax-versions:
21
@for version in \
0 commit comments