merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 7d18e035c8e5a8eb8e770ea54c863b57704d83c4
parent 965ad270e2b4d87d4fed8b06e32e642c947f5a44
Author: Devan Carpenter <devan@taler.net>
Date:   Sun, 17 Mar 2024 10:46:06 -0400

ci: remove leading v character from version string

debian doesn't want a v at the start of the version string

Diffstat:
Mcontrib/ci/jobs/4-deb-package/version.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/ci/jobs/4-deb-package/version.sh b/contrib/ci/jobs/4-deb-package/version.sh @@ -10,7 +10,7 @@ else RECENT_VERSION_TAG=$(git describe --tags --match 'v*.*.*' --always --abbrev=0 HEAD || exit 1) commits="$(git rev-list ${RECENT_VERSION_TAG}..HEAD --count)" if [ "${commits}" = "0" ]; then - git describe --tag HEAD || exit 1 + git describe --tag HEAD | sed -r 's/^v//' || exit 1 else echo $(echo ${RECENT_VERSION_TAG} | sed -r 's/^v//')-${commits}-$(git rev-parse --short=8 HEAD) fi