Skip to content

Commit 37ac001

Browse files
committed
Invoke package configuration script
1 parent 8b83750 commit 37ac001

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ matrix:
2626
- wget https://swift.org/builds/swift-3.0-release/ubuntu1404/swift-3.0-RELEASE/swift-3.0-RELEASE-ubuntu14.04.tar.gz
2727
- tar xzf swift-3.0-RELEASE-ubuntu14.04.tar.gz
2828
- export PATH=${PWD}/swift-3.0-RELEASE-ubuntu14.04/usr/bin:"${PATH}"
29+
- swift utils/make-pkgconfig.swift
2930
script:
3031
- swift build

utils/make-pkgconfig.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99
/// - returns: The standard output of the process, or nil if it was empty.
1010
func run(_ path: String, args: [String] = []) -> String? {
1111
let pipe = Pipe()
12-
let process = Process()
12+
let process = Task()
1313
process.launchPath = path
1414
process.arguments = args
1515
process.standardOutput = pipe

0 commit comments

Comments
 (0)