File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -383,12 +383,12 @@ go-generate:
383383# make new-changelog CHANGELOG_BODY="Changes you have made"
384384new-changelog : GH_LOGIN ?= $(shell gh pr view --json author --jq .author.login 2> /dev/null)
385385new-changelog : GH_PR_NUMBER ?= $(shell gh pr view --json number --jq .number 2> /dev/null)
386- new-changelog : CHANGELOG_BODY ?= " $(shell gh pr view --json title --jq .title) "
386+ new-changelog : CHANGELOG_BODY ?= ' $(shell gh pr view --json title --jq .title) '
387387new-changelog :
388388 @if [ " $( GH_LOGIN) " = " " ]; then \
389389 echo " branch does not have PR or cli not logged in, try 'gh auth login' or 'gh pr create'" ; \
390390 exit 1; \
391391 fi
392392 @mkdir -p ./changelogs/unreleased/ && \
393393 echo $(CHANGELOG_BODY ) > ./changelogs/unreleased/$(GH_PR_NUMBER ) -$(GH_LOGIN ) && \
394- echo " \" $( CHANGELOG_BODY) \" added to ./changelogs/unreleased/$( GH_PR_NUMBER) -$( GH_LOGIN) "
394+ echo \" $(CHANGELOG_BODY ) \" added to " ./changelogs/unreleased/$( GH_PR_NUMBER) -$( GH_LOGIN) "
You can’t perform that action at this time.
0 commit comments