You need to sign in or sign up before continuing.
Commit 2dd843bb authored by Vitaly Lipatov's avatar Vitaly Lipatov

rpmgs: fix CURVER/CURREL

parent 7eeb22f8
......@@ -239,8 +239,9 @@ do
if [ -z "$GSSKIPADDCHANGELOG" ] ; then
# Write changelog if all done
CURVERREL=$(get_version $i)-$(get_release $i)
add_changelog_helper "- new version ($CURVER)" $i || echog "Changelog entry for $CURVERREL already exists"
CURVER=$(get_version $i)
CURREL=$(get_release $i)
add_changelog_helper "- new version ($CURVER)" $i || echog "Changelog entry for $CURVER-$CURREL already exists"
fi
done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment