aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-01-28 18:01:47 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-01-28 18:02:17 +0700
commite3d27e9553b47cea15004af38bc02588ce9b8b76 (patch)
tree3b2c39a7fcd41bd6363753c75f12765ce5842e9a
parent911d487eab3d5f4d5299044c0cf932e21d3f514d (diff)
osmo-release.sh: make it a bit more user friendly
-rwxr-xr-xosmo-release.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/osmo-release.sh b/osmo-release.sh
index 5f31c5ff..e947fe43 100755
--- a/osmo-release.sh
+++ b/osmo-release.sh
@@ -235,7 +235,9 @@ check_debian_patch_apply
if [ "z$LIBVERS" != "z" ]; then
if [ "z$MAKEMOD" = "z" ] && [ "z$ALLOW_NO_LIBVERSION_CHANGE" = "z0" ]; then
- echo "ERROR: Before releasing, please modify some of the libversions: $LIBVERS"
+ echo "ERROR: Before releasing, please modify some of the libversions:"
+ for l in $LIBVERS; do echo " $l"; done
+ echo "After making changes, add modified file(s) to the index using git-add."
echo "You should NOT be doing this unless you've read and understood following article:"
echo "https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info"
exit 1