File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/arduino/arduino-builder
33go 1.12
44
55require (
6- github.com/arduino/arduino-cli v0.0.0-20190909101745-b3db7a6400cf
6+ github.com/arduino/arduino-cli v0.0.0-20190920124130-b6774033151c
77 github.com/arduino/go-paths-helper v0.0.0-20190214132331-c3c98d1bf2e1
88 github.com/arduino/go-properties-orderedmap v0.0.0-20190828172252-05018b28ff6c
99 github.com/go-errors/errors v1.0.1
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ github.com/arduino/arduino-cli v0.0.0-20190828173137-fffa451acd60 h1:5jnGjqzOYyS
55github.com/arduino/arduino-cli v0.0.0-20190828173137-fffa451acd60 /go.mod h1:mTVK2WsKc1Ehy2ic+rChPLo9N0uf3ZuUVO7C3y4Y04Q =
66github.com/arduino/arduino-cli v0.0.0-20190909101745-b3db7a6400cf h1:MWVsGOfaT0/HzX5PP6/fWiPviu2YzBe1SbPMtX4qb7s =
77github.com/arduino/arduino-cli v0.0.0-20190909101745-b3db7a6400cf /go.mod h1:mTVK2WsKc1Ehy2ic+rChPLo9N0uf3ZuUVO7C3y4Y04Q =
8+ github.com/arduino/arduino-cli v0.0.0-20190920124130-b6774033151c h1:0ewBEBzUPbdJgXusSiofkoCJbrT2uKex5ZswdawmdAM =
9+ github.com/arduino/arduino-cli v0.0.0-20190920124130-b6774033151c /go.mod h1:tGmlOZBUyZunMKW2TIwP/ztR2wnfL81+BNNuZaZmXuQ =
810github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c h1:agh2JT96G8egU7FEb13L4dq3fnCN7lxXhJ86t69+W7s =
911github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c /go.mod h1:HK7SpkEax/3P+0w78iRQx1sz1vCDYYw9RXwHjQTB5i8 =
1012github.com/arduino/go-paths-helper v0.0.0-20190214132331-c3c98d1bf2e1 h1:S0NpDSqjlkNA510vmRCP5Cq9mPgu3rWDSdeN4SI1Mwc =
Original file line number Diff line number Diff line change @@ -258,9 +258,9 @@ func main() {
258258 if toolsFolders , err := toSliceOfUnquoted (toolsFoldersFlag ); err != nil {
259259 printCompleteError (err )
260260 } else if len (toolsFolders ) > 0 {
261- ctx .ToolsDirs = paths .NewPathList (toolsFolders ... )
261+ ctx .BuiltInToolsDirs = paths .NewPathList (toolsFolders ... )
262262 }
263- if len (ctx .ToolsDirs ) == 0 {
263+ if len (ctx .BuiltInToolsDirs ) == 0 {
264264 printErrorMessageAndFlagUsage (errors .New ("Parameter '" + FLAG_TOOLS + "' is mandatory" ))
265265 }
266266
You can’t perform that action at this time.
0 commit comments