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 586246c commit 04f9912Copy full SHA for 04f9912
.travis.yml
@@ -36,6 +36,6 @@ matrix:
36
- tar xzf swift-3.0.2-RELEASE-ubuntu14.04.tar.gz
37
- export PATH=${PWD}/swift-3.0.2-RELEASE-ubuntu14.04/usr/bin:"${PATH}"
38
# Move the package config file into place
39
- - sudo ./swift-3.0.2-RELEASE-ubuntu14.04/usr/bin/swift utils/make-pkgconfig.swift
+ - ./swift-3.0.2-RELEASE-ubuntu14.04/usr/bin/swift utils/make-pkgconfig.swift
40
script:
41
- swift build
utils/make-pkgconfig.swift
@@ -106,7 +106,7 @@ func makeFile() throws {
106
107
do {
108
try makeFile()
109
-} catch {
110
-// print("error: \(error)")
+} catch let err {
+ print("error: \(err)")
111
exit(-1)
112
}
0 commit comments