From c869d77ce7426966731a930eca5c9f1c52af3968 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Thu, 11 Jun 2020 19:26:33 +0200 Subject: [PATCH] Release v0.1.47 Signed-off-by: Chase Sillevis --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4d41f114..02bd2436 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ GOVERSION := 1.14 PROJECT := github.com/DeviaVir/terraform-provider-gsuite OWNER := $(notdir $(patsubst %/,%,$(dir $(PROJECT)))) NAME := $(notdir $(PROJECT)) -VERSION := 0.1.46 +VERSION := 0.1.47 EXTERNAL_TOOLS = \ github.com/golang/dep/cmd/dep @@ -146,7 +146,7 @@ _cleanup: @rm -rf "${CURRENT_DIR}/bin/" .PHONY: _cleanup -# _compress compresses all the binaries in pkg/* as tarball and zip. +# _compress compresses all the binaries in pkg/* as zip. _compress: @mkdir -p "${CURRENT_DIR}/pkg/dist" @for platform in $$(find ./pkg -mindepth 1 -maxdepth 1 -type d); do \ @@ -160,7 +160,6 @@ _compress: ext=".exe"; \ fi; \ cd "$$platform"; \ - tar -czf "${CURRENT_DIR}/pkg/dist/${NAME}_${VERSION}_$${osarch}.tgz" "${NAME}_v${VERSION}$${ext}"; \ zip -q "${CURRENT_DIR}/pkg/dist/${NAME}_${VERSION}_$${osarch}.zip" "${NAME}_v${VERSION}$${ext}"; \ cd - &>/dev/null; \ done