Change .goreleaser.yml to support go module build

This commit is contained in:
Tomofumi Hayashi
2019-06-14 15:36:44 +09:00
committed by dougbtv
parent 89b82c1264
commit 2f70e96401
3 changed files with 7 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
set -e
# this if... will be removed when gomodules goes default
if [ $GO111MODULE == "off" ]; then
if [ "$GO111MODULE" == "off" ]; then
echo "Warning: this will be deprecated in near future so please use go modules!"
ORG_PATH="github.com/intel"