Skip to content

Commit 97df12e

Browse files
authored
Fix soundness script (#126)
1 parent 3dbb8b3 commit 97df12e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

scripts/preview_docc.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
32
##===----------------------------------------------------------------------===##
43
##
54
## This source file is part of the SwiftServiceLifecycle open source project
@@ -28,4 +27,4 @@
2827
##
2928
##===----------------------------------------------------------------------===##
3029

31-
xcrun swift package --disable-sandbox preview-documentation --target $1
30+
swift package --disable-sandbox preview-documentation --target $1

scripts/soundness.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ for language in swift-or-c bash dtrace; do
7373
matching_files=( -name '*' )
7474
case "$language" in
7575
swift-or-c)
76-
exceptions=( -name Package.swift -o -name Package@*.swift )
76+
exceptions=( -name Package.swift -o -name 'Package@*.swift' )
7777
matching_files=( -name '*.swift' -o -name '*.c' -o -name '*.h' )
7878
cat > "$tmp" <<"EOF"
7979
//===----------------------------------------------------------------------===//

0 commit comments

Comments
 (0)