Skip to content
This repository was archived by the owner on Jun 27, 2021. It is now read-only.

Commit c869d77

Browse files
committed
Release v0.1.47
Signed-off-by: Chase Sillevis <chase@sillevis.net>
1 parent f258d9a commit c869d77

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GOVERSION := 1.14
1919
PROJECT := github.com/DeviaVir/terraform-provider-gsuite
2020
OWNER := $(notdir $(patsubst %/,%,$(dir $(PROJECT))))
2121
NAME := $(notdir $(PROJECT))
22-
VERSION := 0.1.46
22+
VERSION := 0.1.47
2323
EXTERNAL_TOOLS = \
2424
github.com/golang/dep/cmd/dep
2525

@@ -146,7 +146,7 @@ _cleanup:
146146
@rm -rf "${CURRENT_DIR}/bin/"
147147
.PHONY: _cleanup
148148

149-
# _compress compresses all the binaries in pkg/* as tarball and zip.
149+
# _compress compresses all the binaries in pkg/* as zip.
150150
_compress:
151151
@mkdir -p "${CURRENT_DIR}/pkg/dist"
152152
@for platform in $$(find ./pkg -mindepth 1 -maxdepth 1 -type d); do \
@@ -160,7 +160,6 @@ _compress:
160160
ext=".exe"; \
161161
fi; \
162162
cd "$$platform"; \
163-
tar -czf "${CURRENT_DIR}/pkg/dist/${NAME}_${VERSION}_$${osarch}.tgz" "${NAME}_v${VERSION}$${ext}"; \
164163
zip -q "${CURRENT_DIR}/pkg/dist/${NAME}_${VERSION}_$${osarch}.zip" "${NAME}_v${VERSION}$${ext}"; \
165164
cd - &>/dev/null; \
166165
done

0 commit comments

Comments
 (0)