@@ 42,7 42,7 @@ bump_and_commit() {
rpmdev-bumpspec -c "${message}" "${package}.spec" | tee -a "${logfmt}"
# --allow-empty is neded for rpmautospec
git add "${package}.spec"
- git commit "${gpgsign:-}" --allow-empty -m "${message}" | tee -a "${logfmt}"
+ git commit ${gpgsign:-} --allow-empty -m "${message}" | tee -a "${logfmt}"
}
branch="${branch:-f35}"
@@ 93,7 93,7 @@ git reset --hard "origin/${branch}"
mkdir -p "${logdir}"
if [ "${action}" == "merge" ] || [ "${action}" == "rawhide_commit" ]; then
- git merge "${gpgsign:-}" origin/rawhide | tee -a "${logfmt}"
+ git merge ${gpgsign:-} origin/rawhide | tee -a "${logfmt}"
elif [ "${action}" == "commit" ]; then
bump_and_commit
fi