File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11OWNER := dnitsch
22NAME := aws-cli-auth
3- VERSION := v0.7.3
3+ VERSION := v0.7.4
44REVISION := $(shell git rev-parse --short HEAD)
55
66
@@ -43,7 +43,7 @@ cross-build:
4343release : cross-build
4444 git tag $(VERSION )
4545 git push origin $(VERSION )
46- id=$(curl \
46+ id=$(shell curl \
4747 -X POST \
4848 -u $(OWNER ) :$(PAT ) \
4949 -H " Accept: application/vnd.github.v3+json" \
@@ -52,7 +52,7 @@ release: cross-build
5252 upload_url=https://uploads.github.com/repos/$(OWNER ) /$(NAME ) /releases/$$ id/assets; \
5353 for asset in dist/* ; do \
5454 echo $$ asset; \
55- name=$(echo $$asset | cut -c 6- ) ; \
55+ name=$(shell echo $$asset | cut -c 6-) ; \
5656 curl -u $(OWNER ) :$(PAT ) -H " Content-Type: application/x-binary" -X POST --data-binary " @$$ asset" " $$ upload_url?name=$$ name" ; \
5757 done
5858
You can’t perform that action at this time.
0 commit comments