Skip to content

Commit

Permalink
Made shell() public
Browse files Browse the repository at this point in the history
  • Loading branch information
calebkleveter committed May 30, 2017
1 parent b4609a3 commit 4c84c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Helpers/CommandLine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import Foundation

@discardableResult
func shell(command: String, _ args: String...) -> Int32 {
public func shell(command: String, _ args: String...) -> Int32 {
let task = Process()
task.launchPath = command
task.arguments = args
Expand Down

0 comments on commit 4c84c73

Please sign in to comment.