Fixed upload issue on esp32 (partitions artifacts copy) (#457)
* Copy multiple build artifacts matching a name pattern. Previously the compile command copied only the following artifacts: sketch.ino.hex (or .bin) sketch.ino.elf now also the files matching the glob sketch.ino.*.hex will be copied. This allows for some 3rd party core (like esp32) to copy also the extra file sketch.ino.partitions.bin. Should fix #163 * Added test for improved support for esp32:esp32 https://github.com/arduino/arduino-cli/issues/163 * Run of "go mod tidy"
Showing
cli/testdata/Blink/Blink.ino
0 → 100644
... | @@ -43,7 +43,6 @@ require ( | ... | @@ -43,7 +43,6 @@ require ( |
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45 | go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45 | ||
golang.org/x/net v0.0.0-20190311183353-d8887717615a | golang.org/x/net v0.0.0-20190311183353-d8887717615a | ||
golang.org/x/text v0.3.0 | golang.org/x/text v0.3.0 | ||
google.golang.org/appengine v1.4.0 // indirect | |||
google.golang.org/genproto v0.0.0-20190327125643-d831d65fe17d // indirect | google.golang.org/genproto v0.0.0-20190327125643-d831d65fe17d // indirect | ||
google.golang.org/grpc v1.21.1 | google.golang.org/grpc v1.21.1 | ||
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect | gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect | ||
... | ... |
Please register or sign in to comment