File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -26,5 +26,6 @@ matrix:
26
26
- wget https://swift.org/builds/swift-3.0-release/ubuntu1404/swift-3.0-RELEASE/swift-3.0-RELEASE-ubuntu14.04.tar.gz
27
27
- tar xzf swift-3.0-RELEASE-ubuntu14.04.tar.gz
28
28
- export PATH=${PWD}/swift-3.0-RELEASE-ubuntu14.04/usr/bin:"${PATH}"
29
+ - swift utils/make-pkgconfig.swift
29
30
script :
30
31
- swift build
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Foundation
9
9
/// - returns: The standard output of the process, or nil if it was empty.
10
10
func run( _ path: String , args: [ String ] = [ ] ) -> String ? {
11
11
let pipe = Pipe ( )
12
- let process = Process ( )
12
+ let process = Task ( )
13
13
process. launchPath = path
14
14
process. arguments = args
15
15
process. standardOutput = pipe
You can’t perform that action at this time.
0 commit comments