File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change 11
11
struct Command {
12
12
let node : String
13
13
let tool : ToolProtocol
14
-
15
- static func createDirectory( _ path: String ) -> Command {
16
- return Command ( node: path, tool: MkdirTool ( path: path) )
17
- }
18
14
}
Original file line number Diff line number Diff line change @@ -93,18 +93,6 @@ struct Target {
93
93
var cmds : [ Command ]
94
94
}
95
95
96
- struct MkdirTool : ToolProtocol {
97
- let path : String
98
-
99
- var inputs : [ String ] { return [ ] }
100
- var outputs : [ String ] { return [ path] }
101
-
102
- func append( to stream: OutputByteStream ) {
103
- stream <<< " tool: mkdir \n "
104
- stream <<< " outputs: " <<< Format . asJSON ( outputs) <<< " \n "
105
- }
106
- }
107
-
108
96
struct ClangTool : ToolProtocol {
109
97
let desc : String
110
98
let inputs : [ String ]
You can’t perform that action at this time.
0 commit comments