Skip to content

Commit 1b96a97

Browse files
committed
Using BuiltInToolsDirs instead of ToolsDirs
1 parent aa5bb45 commit 1b96a97

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/arduino/arduino-builder
33
go 1.12
44

55
require (
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

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ github.com/arduino/arduino-cli v0.0.0-20190828173137-fffa451acd60 h1:5jnGjqzOYyS
55
github.com/arduino/arduino-cli v0.0.0-20190828173137-fffa451acd60/go.mod h1:mTVK2WsKc1Ehy2ic+rChPLo9N0uf3ZuUVO7C3y4Y04Q=
66
github.com/arduino/arduino-cli v0.0.0-20190909101745-b3db7a6400cf h1:MWVsGOfaT0/HzX5PP6/fWiPviu2YzBe1SbPMtX4qb7s=
77
github.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=
810
github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c h1:agh2JT96G8egU7FEb13L4dq3fnCN7lxXhJ86t69+W7s=
911
github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c/go.mod h1:HK7SpkEax/3P+0w78iRQx1sz1vCDYYw9RXwHjQTB5i8=
1012
github.com/arduino/go-paths-helper v0.0.0-20190214132331-c3c98d1bf2e1 h1:S0NpDSqjlkNA510vmRCP5Cq9mPgu3rWDSdeN4SI1Mwc=

main.go

+2-2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)