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 f508353 commit efd07ceCopy full SHA for efd07ce
Sources/ShellOut.swift
@@ -23,9 +23,9 @@ import Foundation
23
// Error type thrown by the `shellOut()` function, in case the given command failed
24
public struct ShellOutError: Swift.Error {
25
/// The error message that was returned through `STDERR`
26
- let message: String
+ public let message: String
27
/// Any output that was put in `STDOUT` despite the error being thrown
28
- let output: String
+ public let output: String
29
}
30
31
// MARK: - Private
Tests/ShellOutTests/ShellOutTests.swift
@@ -1,5 +1,5 @@
1
import XCTest
2
-@testable import ShellOut
+import ShellOut
3
4
class ShellOutTests: XCTestCase {
5
func testWithoutArguments() throws {
0 commit comments