Skip to content

Commit 3ea36fd

Browse files
committed
smallstep -> step for tar bundles
1 parent 81b64b0 commit 3ea36fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,18 +173,18 @@ binary-darwin:
173173

174174
define BUNDLE
175175
$(q)BUNDLE_DIR=$(BINARY_OUTPUT)$(1)/bundle; \
176-
stepName=smallstep_$(2); \
176+
stepName=step_$(2); \
177177
mkdir -p $$BUNDLE_DIR; \
178178
TMP=$$(mktemp -d $$BUNDLE_DIR/tmp.XXXX); \
179179
trap "rm -rf $$TMP" EXIT INT QUIT TERM; \
180180
newdir=$$TMP/$$stepName; \
181181
mkdir -p $$newdir/bin; \
182182
cp $(BINARY_OUTPUT)$(1)/bin/step $$newdir/bin/; \
183183
cp README.md $$newdir/; \
184-
NEW_BUNDLE=$$BUNDLE_DIR/smallstep_$(2)-$(1)-$(3).tar.gz; \
184+
NEW_BUNDLE=$$BUNDLE_DIR/$$stepName-$(1)-$(3).tar.gz; \
185185
rm -f $$NEW_BUNDLE; \
186186
tar -zcvf $$NEW_BUNDLE -C $$TMP $$stepName; \
187-
cp $$NEW_BUNDLE $$BUNDLE_DIR/smallstep_latest-$(1)-$(3).tar.gz;
187+
cp $$NEW_BUNDLE $$BUNDLE_DIR/step_latest-$(1)-$(3).tar.gz;
188188
endef
189189

190190
bundle-linux: binary-linux

0 commit comments

Comments
 (0)