Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct folder name in build taskfile
A copy/paste error resulted in the same folder name being used for the Linux ARM 64-bit build as for the Linux ARM v6
build. Although that did not cause any noticeable problems in this project's usage, it can in others. For example:

```
mkdir: cannot create directory ‘serial-monitor_linux_arm_6’: File exists
task: Failed to run task "dist:all": task: Failed to run task "dist:Linux_ARM64": exit status 1
```

It also causes an unexpected structure in the "dist" output, which is not typically used for anything, but might still
cause confusion during unrelated development or troubleshooting.
  • Loading branch information
per1234 committed Jun 30, 2022
commit 73e7a1953b3e63b516fae0d0a57980b283816920
2 changes: 1 addition & 1 deletion DistTasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ tasks:
sha256sum {{.PACKAGE_NAME}} >> {{.CHECKSUM_FILE}}

vars:
PLATFORM_DIR: "{{.PROJECT_NAME}}_linux_arm_6"
PLATFORM_DIR: "{{.PROJECT_NAME}}_linux_arm_64"
BUILD_COMMAND: "go build -o {{.DIST_DIR}}/{{.PLATFORM_DIR}}/{{.PROJECT_NAME}} {{.LDFLAGS}}"
BUILD_PLATFORM: "linux/arm64"
CONTAINER_TAG: "{{.GO_VERSION}}-arm"
Expand Down