Commit ae65cdcce2427f8fe106ecf4da53602210b68210
1 parent
cb47c515
Fix typo in release instructions
Showing
1 changed file
with
1 additions
and
1 deletions
README-maintainer
| ... | ... | @@ -157,7 +157,7 @@ git push upstream release-qpdf-$version |
| 157 | 157 | |
| 158 | 158 | # Create release |
| 159 | 159 | TOKEN=$(cat ~/.github-token) |
| 160 | -function gcurl() { curl -H "Authorization: token $TOKEN" ${1+"$@"} } | |
| 160 | +function gcurl() { curl -H "Authorization: token $TOKEN" ${1+"$@"}; } | |
| 161 | 161 | url=$(gcurl -s -XPOST https://api.github.com/repos/qpdf/qpdf/releases -d'{"tag_name": "release-qpdf-'$version'", "name": "qpdf '$version'", "draft": true}' | jq -r '.url') |
| 162 | 162 | |
| 163 | 163 | # Get upload url | ... | ... |