Skip to content

Commit 6b21864

Browse files
Update Taskfile and .gitignore
1 parent a32a319 commit 6b21864

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
public/
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
5+
build/

Taskfile.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,15 @@ tasks:
99
deps:
1010
- arduino-flasher-cli:artifacts
1111
desc: "Build the arduino-flasher-cli locally"
12-
dir: arduino-flasher-cli
1312
vars:
1413
VERSION: "{{.VERSION }}"
1514
cmds:
16-
- cmd: go build -ldflags "-X main.Version={{.VERSION}}" -v -o ../build/arduino-flasher-cli .
15+
- cmd: go build -ldflags "-X main.Version={{.VERSION}}" -v -o ./build/arduino-flasher-cli .
1716
platforms: [linux, darwin]
18-
- cmd: go build -ldflags "-X main.Version={{.VERSION}}" -v -o ../build/arduino-flasher-cli.exe .
17+
- cmd: go build -ldflags "-X main.Version={{.VERSION}}" -v -o ./build/arduino-flasher-cli.exe .
1918
platforms: [windows]
2019

2120
arduino-flasher-cli:artifacts:
2221
desc: Prepare the arduino-flasher-cli artifacts
2322
internal: true
24-
cmd: sh ./arduino-flasher-cli/updater/artifacts/download_resources.sh
23+
cmd: sh ./updater/artifacts/download_resources.sh

0 commit comments

Comments
 (0)