Skip to content

Commit

Permalink
Apply minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanS01 committed Jun 19, 2022
1 parent d497fa0 commit 950aa82
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions create-milestone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ else
echo "$MILESTONE"

echo Milestone Number:
MILESTONE_NUMBER=$( $MILESTONE | jq --raw-output '.number' )
MILESTONE_NUMBER=$( echo $MILESTONE | jq --raw-output '.number' )
echo "$MILESTONE_NUMBER"

link_milestone_curl_cmd $MILESTONE_NUMBER
Expand All @@ -100,7 +100,9 @@ else
echo Created Milestone:
echo "$CREATED_MILESTONE"

MILESTONE_NUMBER=$( $CREATED_MILESTONE | jq --raw-output '.number' )
echo Milestone Number:
MILESTONE_NUMBER=$( echo $CREATED_MILESTONE | jq --raw-output '.number' )
echo "$MILESTONE_NUMBER"
link_milestone_curl_cmd $MILESTONE_NUMBER

echo Linked Pull Request:
Expand Down

0 comments on commit 950aa82

Please sign in to comment.