Skip to content

Commit

Permalink
remove -t flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Fitzwater - IDI-C committed Dec 12, 2019
1 parent 8d53211 commit 52cb4b8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions handler/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ ifeq ($(strip $(GITHUB_TOKEN)),)
else ifeq ($(strip $(CIRCLE_TAG)),)
@echo "CIRCLE_TAG must be set"
@exit 0
else ifeq ($(shell echo $(CIRCLE_TAG) | egrep '^v\d+\.\d+\.\d+'),)
@echo "CIRCLE_TAG must match version pattern (i.e. v.1.2.3)"
@exit 0
else
ghr -t $(GITHUB_TOKEN) -u $(CIRCLE_PROJECT_USERNAME) -r $(CIRCLE_PROJECT_REPONAME) -c $(CIRCLE_SHA1) -delete $(CIRCLE_TAG) $(RELEASEDIR)
ghr -u $(CIRCLE_PROJECT_USERNAME) -r $(CIRCLE_PROJECT_REPONAME) -c $(CIRCLE_SHA1) -delete $(CIRCLE_TAG) $(RELEASEDIR)
endif

clean:
Expand Down

0 comments on commit 52cb4b8

Please sign in to comment.