From e3d27e9553b47cea15004af38bc02588ce9b8b76 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sun, 28 Jan 2024 18:01:47 +0700 Subject: [PATCH] osmo-release.sh: make it a bit more user friendly Change-Id: I8574cb00de820ab477eb5c4abd05d8e546ca89cc --- osmo-release.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/osmo-release.sh b/osmo-release.sh index 5f31c5ffc..e947fe437 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