fix: Correct go variable

pull/3756/head
Laurynas Gadliauskas 2022-01-10 16:29:38 +02:00
parent 29ac470bc5
commit 03193dfbf4
1 changed files with 1 additions and 1 deletions

View File

@ -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)"