Remove curl --verbose in release script.

This commit is contained in:
Dan Helfman 2018-10-06 22:35:00 -07:00
parent 53435dcc3e
commit 7a4636ae0f
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ twine upload -r pypi dist/borgmatic-*-py3-none-any.whl
# Set release changelogs on projects.evoworx.org and GitHub.
release_changelog=$(sed '/^$/q' NEWS |grep '^\s*\*')
escaped_release_changelog=$(echo $release_changelog | sed -z 's/\n/\\n/g')
curl --request POST --verbose \
curl --request POST \
"https://projects.torsion.org/api/v1/repos/witten/borgmatic/releases?access_token=$projects_token" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \