From a6ae9b081aa403ceb235169e7eee242277e05f74 Mon Sep 17 00:00:00 2001 From: Vladimir Hodakov Date: Tue, 8 Oct 2019 05:59:48 +0400 Subject: [PATCH] Fix environment variables in Drone CI --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 294f116..2d3e8c6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,10 +8,10 @@ steps: commands: - go test -test.v -cover `go list ./... | grep -v examples | grep -v internal` environment: - - GOFLAGS=-mod=vendor + GOFLAGS: -mod=vendor - name: lint image: fat0troll/tdlib-golangci commands: - golangci-lint -v run environment: - - GOFLAGS=-mod=vendor \ No newline at end of file + GOFLAGS: -mod=vendor \ No newline at end of file