File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,24 +101,24 @@ public struct ShellOutCommand {
101
101
self . arguments = arguments
102
102
}
103
103
104
- var string : String {
104
+ public var string : String {
105
105
( [ command. value] + arguments. map ( \. string) )
106
106
. joined ( separator: " " )
107
107
}
108
108
109
- func appending( arguments newArguments: [ Argument ] ) -> Self {
109
+ public func appending( arguments newArguments: [ Argument ] ) -> Self {
110
110
. init( command: command, arguments: arguments + newArguments)
111
111
}
112
112
113
- func appending( argument: Argument ) -> Self {
113
+ public func appending( argument: Argument ) -> Self {
114
114
appending ( arguments: [ argument] )
115
115
}
116
116
117
- mutating func append( arguments newArguments: [ Argument ] ) {
117
+ public mutating func append( arguments newArguments: [ Argument ] ) {
118
118
self . arguments = self . arguments + newArguments
119
119
}
120
120
121
- mutating func append( argument: Argument ) {
121
+ public mutating func append( argument: Argument ) {
122
122
append ( arguments: [ argument] )
123
123
}
124
124
}
You can’t perform that action at this time.
0 commit comments