From a5fc5f0ff65ee9000b8905d1932265203792e499 Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 4 May 2021 17:02:17 -0400 Subject: [PATCH] Revert "Better way to invoke `make single`" This reverts commit 73efbd90 --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f2572d28..21b198cf 100644 --- a/Makefile +++ b/Makefile @@ -78,14 +78,14 @@ all: ##@Cross_Compilation Build binaries for all supported platforms. It does no .PHONY: all single: ##@Cross_Compilation Build binaries for a single supported platforms. It does not build the frontend - @if [ -z "${os}" -o -z "${arch}" ]; then \ - echo "Usage: make single os= arch= "; \ + @if [ -z "${GOOS}" -o -z "${GOARCH}" ]; then \ + echo "Usage: GOOS= GOARCH= make single"; \ echo "Options:"; \ grep -- "- id: navidrome_" .goreleaser.yml | sed 's/- id: navidrome_//g'; \ exit 1; \ fi - @echo "Building binaries for ${os}/${arch}" - docker run -t -v $(PWD):/workspace -e GOOS=${os} -e GOARCH=${arch} -w /workspace deluan/ci-goreleaser:$(CI_RELEASER_VERSION) \ + @echo "Building binaries for ${GOOS}/${GOARCH}" + docker run -t -v $(PWD):/workspace -e GOOS -e GOARCH -w /workspace deluan/ci-goreleaser:$(CI_RELEASER_VERSION) \ goreleaser build --rm-dist --snapshot --single-target --id navidrome_${GOOS}_${GOARCH} .PHONY: single