From 8eb4dc0578b528901da779d6a34b986e9f6281cc Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 11 Feb 2026 11:06:05 -0300 Subject: [PATCH] chore(taskfile): add `-v` to `go build` --- Taskfile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 2d5462a63ea12468bbaa574454038eb105146867..e20177a86873cba8b685675032da6b1f65282e1b 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -45,7 +45,7 @@ tasks: vars: LDFLAGS: '{{if .VERSION}}-ldflags="-X github.com/charmbracelet/crush/internal/version.Version={{.VERSION}}"{{end}}' cmds: - - "go build {{if .RACE}}-race{{end}} {{.LDFLAGS}} ." + - "go build -v {{if .RACE}}-race{{end}} {{.LDFLAGS}} ." sources: - ./**/*.go - go.mod