From 2b7231097f17429e46995266870ba80540ba947d Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Mon, 21 Mar 2022 10:20:53 -0600 Subject: [PATCH] snap: Make it build with Go 1.18 --- snap/snapcraft.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 29c5c00c..9953190f 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -47,8 +47,8 @@ parts: export GOPATH=$(realpath ../go) export PATH=$GOPATH/bin:$PATH - echo ' * Running "go get -v github.com/magefile/mage"...' - go get -v github.com/magefile/mage + echo ' * Running "go install -v github.com/magefile/mage"...' + go install -v github.com/magefile/mage #echo ' * Running "mage -v test"...' #mage -v test -- 2.30.2