diff --git a/Taskfile.yml b/Taskfile.yml index e592bd7..db72fa4 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -24,7 +24,7 @@ tasks: fmt-check: desc: Fail if any file is not gofmt-clean. cmds: - - test -z "$(gofmt -l .)" || { echo 'gofmt: files need formatting:'; gofmt -l .; exit 1; } + - "test -z \"$(gofmt -l .)\" || { echo 'gofmt: files need formatting:'; gofmt -l .; exit 1; }" vet: desc: go vet.