You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am NOT running inside docker BTW.
Does this automatically invoke docker ?
go version go1.22.1 darwin/arm64
Task-UI:
task: [hot] go build -o ./webui_bin cmd/webui/main.go
failed to initialize build cache at /root/Library/Caches/go-build: mkdir /root: read-only file system
task: Failed to run task "hot": exit status 1
Taskfile.yml:
# https://taskfile.devversion: "3"interval: 100msvars:
NAME: "webui"BIN_NAME: "{{.NAME}}_bin"VERSION:
sh: cat library/package.json| jq -r .versionhot:
desc: Server hot reloadsources:
- "**/*.go"
- "webui/static/**/*"
- "{{.NAME}}/static/**/*"cmds:
#- go mod tidy
- go build -o ./{{.BIN_NAME}} cmd/{{.NAME}}/main.go
- ./{{.BIN_NAME}}default:
deps:
- hotsilent: false
The text was updated successfully, but these errors were encountered:
Task-ui only invokes task, task then invokes go build. If go build is failing, may be an actual permission issue? List the folder permission bits and check the user task-ui is running as?
If I run this using task from Terminal it works.
But when run from task-ui it fails.
Not quite sure what's going on yet...
I am NOT running inside docker BTW.
Does this automatically invoke docker ?
Task-UI:
Taskfile.yml:
The text was updated successfully, but these errors were encountered: