osmith has submitted this change and it was merged. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/14649 )

Change subject: common.sh: osmo_git_last_commits_tags: add "all"
......................................................................

common.sh: osmo_git_last_commits_tags: add "all"

Allow printing all tags instead of only the N most recent ones.

Related: OS#3870
Change-Id: I684c6881915831b33b679e8ae873213beb034ab7
---
M scripts/common.sh
1 file changed, 4 insertions(+), 2 deletions(-)

Approvals:
  pespin: Looks good to me, but someone else must approve
  laforge: Looks good to me, but someone else must approve
  osmith: Looks good to me, approved; Verified



diff --git a/scripts/common.sh b/scripts/common.sh
index 0a32c31..30ab53f 100644
--- a/scripts/common.sh
+++ b/scripts/common.sh
@@ -16,7 +16,7 @@
 # Print last tags and related commits for an Osmocom git repository, e.g.:
 # "ec798b89700dcca5c5b28edf1a1cd16ea311f30a        refs/tags/1.0.1"
 # $1: Osmocom repository
-# $2: amount of commit, tag pairs to print (default: 1)
+# $2: amount of commit, tag pairs to print (default: 1, set to "all" to print 
all)
 # $3: string to print when there are no tags (default: empty string)
 osmo_git_last_commits_tags() {
        # git output:
@@ -31,7 +31,9 @@
        ret="$(git ls-remote --tags "$OSMO_GIT_URL/$1")"
        ret="$(echo "$ret" | grep 'refs/tags/[0-9.]*$' || true)"
        ret="$(echo "$ret" | sort -V -t/ -k3)"
-       ret="$(echo "$ret" | tail -n "$2")"
+       if [ "$2" != "all" ]; then
+               ret="$(echo "$ret" | tail -n "$2")"
+       fi
 
        if [ -n "$ret" ]; then
                echo "$ret"

--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/14649
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I684c6881915831b33b679e8ae873213beb034ab7
Gerrit-Change-Number: 14649
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>
Gerrit-Reviewer: laforge <[email protected]>
Gerrit-Reviewer: osmith <[email protected]>
Gerrit-Reviewer: pespin <[email protected]>
Gerrit-MessageType: merged

Reply via email to