From 1235e48aae11deaae5e10f20930bae530f82da32 Mon Sep 17 00:00:00 2001 From: Yuriy Bogdanov Date: Fri, 4 Sep 2015 19:35:49 +0300 Subject: [PATCH] #8 change binary release compression from bz2 to gz --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1b03bf5..6c6b604 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ release: $(ALL_TARS) tar: $(ALL_TARS) %.tar.gz: % - COPYFILE_DISABLE=1 tar -jcvf $@ -C dist/$(VERSION)/$(call os,$<)/$(call arch,$<) $(call bin,$<) + COPYFILE_DISABLE=1 tar -zcvf $@ -C dist/$(VERSION)/$(call os,$<)/$(call arch,$<) $(call bin,$<) $(ALL_BINARIES): build_image docker run --rm -ti -v $(shell pwd)/dist:/src/dist \