From 4c67913541306c3ab5cca3f109870e31918e3891 Mon Sep 17 00:00:00 2001 From: Alec Aivazis Date: Thu, 22 Apr 2021 09:37:35 -0400 Subject: [PATCH] updated hcl syntax --- _tasks.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_tasks.hcl b/_tasks.hcl index ae970f33..aaa47687 100644 --- a/_tasks.hcl +++ b/_tasks.hcl @@ -8,12 +8,12 @@ task "install-deps" { task "tests" { description = "Run the test suite" command = "go test {{.files}}" - environment { + environment = { GOFLAGS = "-mod=vendor" } } -variables { +variables = { files = "$(go list -v ./... | grep -iEv \"tests|examples\")" }