File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change
1
+ //===----------------------------------------------------------------------===//
2
+ //
3
+ // This source file is part of the Swift open source project
4
+ //
5
+ // Copyright (c) YEARS Apple Inc. and the Swift project authors
6
+ // Licensed under Apache License v2.0 with Runtime Library Exception
7
+ //
8
+ // See http://swift.org/LICENSE.txt for license information
9
+ // See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10
+ //
11
+ //===----------------------------------------------------------------------===//
Original file line number Diff line number Diff line change 1
- #! /bin/sh
1
+ #! /bin/bash
2
+ # #===----------------------------------------------------------------------===##
3
+ # #
4
+ # # This source file is part of the Swift open source project
5
+ # #
6
+ # # Copyright (c) YEARS Apple Inc. and the Swift project authors
7
+ # # Licensed under Apache License v2.0 with Runtime Library Exception
8
+ # #
9
+ # # See http://swift.org/LICENSE.txt for license information
10
+ # # See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
11
+ # #
12
+ # #===----------------------------------------------------------------------===##
2
13
3
14
swift build
4
15
cp .build/arm64-apple-macosx/debug/Certificates.build/DerivedSources/embedded_resources.swift ../../Sources/PackageSigning/
Original file line number Diff line number Diff line change @@ -64,7 +64,15 @@ for language in swift-or-c bash python; do
64
64
matching_files=( -name ' *' )
65
65
case " $language " in
66
66
swift-or-c)
67
- exceptions=( -name " Package.swift" -o -path " ./Examples/*" -o -path " ./Fixtures/*" -o -path " ./IntegrationTests/*" -o -path " ./Tests/ExtraTests/*" -o -path " ./Tests/PackageLoadingTests/Inputs/*" )
67
+ exceptions=(
68
+ -name " Package.swift"
69
+ -o -path " ./Sources/PackageSigning/embedded_resources.swift"
70
+ -o -path " ./Examples/*"
71
+ -o -path " ./Fixtures/*"
72
+ -o -path " ./IntegrationTests/*"
73
+ -o -path " ./Tests/ExtraTests/*"
74
+ -o -path " ./Tests/PackageLoadingTests/Inputs/*"
75
+ )
68
76
matching_files=( -name ' *.swift' -o -name ' *.c' -o -name ' *.h' )
69
77
cat > " $tmp " << "EOF "
70
78
//===----------------------------------------------------------------------===//
You can’t perform that action at this time.
0 commit comments