chore(taskfile): add `-v` to `go build`

Andrey Nering created

Change summary

Taskfile.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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