Skip to content

Commit

Permalink
build: run 'go build' with 'GO111MODULE=off'
Browse files Browse the repository at this point in the history
Volt does not support Go module yet.
  • Loading branch information
tyru committed Oct 26, 2018
1 parent 3a6ccad commit b3eef33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ release: $(BIN_DIR)/$(NAME)
exe=$$exe.exe; \
fi; \
echo "Creating $$exe ... (os=$$os, arch=$$arch)"; \
GOOS=$$os GOARCH=$$arch go build -tags netgo -installsuffix netgo -ldflags "$(RELEASE_LDFLAGS)" -o $$exe; \
GOOS=$$os GOARCH=$$arch GO111MODULE=off go build -tags netgo -installsuffix netgo -ldflags "$(RELEASE_LDFLAGS)" -o $$exe; \
done; \
done

Expand Down

0 comments on commit b3eef33

Please sign in to comment.