Merge pull request #122 from jcvenegas/fix-tag.sh

tag_repos.sh: fix typo
This commit is contained in:
Graham Whaley 2018-08-09 09:15:03 +01:00 committed by GitHub
commit e2dc90c2e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,7 +124,7 @@ create_github_release(){
[ -n "${tag}" ] || die "No repository directory"
if ! "${hub_bin}" release | grep "${tag}"; then
info "Creating Github release"
"${hub_bin }" -C "${repo_dir}" release create -m "${PROJECT} ${tag}" "${tag}"
"${hub_bin}" -C "${repo_dir}" release create -m "${PROJECT} ${tag}" "${tag}"
else
info "Github release already created"
fi