From 03193dfbf4d8136d87ed38fc689deb8f5e9dd39c Mon Sep 17 00:00:00 2001 From: Laurynas Gadliauskas Date: Mon, 10 Jan 2022 16:29:38 +0200 Subject: [PATCH] fix: Correct go variable --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b7741878..c99d1ff0 100644 --- a/Makefile +++ b/Makefile @@ -69,5 +69,5 @@ help: ## Show this help .PHONY: build-release-bin build-release-bin: build-frontend - GO111MODULE=on GOOS=linux GOARCH=amd64 $(GO) build -ldflags '$(LDFLAGS)' -o bin/filebrowser-$(VERSION) + GO111MODULE=on GOOS=linux GOARCH=amd64 $(go) build -ldflags '$(LDFLAGS)' -o bin/filebrowser-$(VERSION) tar -C bin -czf "dist/filebrowser-$(VERSION).tar.gz" "filebrowser-$(VERSION)" \ No newline at end of file