From: Peter van Dijk Date: Mon, 29 Apr 2013 20:23:45 +0000 (+0200) Subject: use underscore instead of dash to make rpmbuild happy X-Git-Tag: auth-3.3-rc1~148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb4d221ae8fb6fd7b27e25c7940df1e02779c7ea;p=thirdparty%2Fpdns.git use underscore instead of dash to make rpmbuild happy --- diff --git a/build-scripts/make-jenkins-version b/build-scripts/make-jenkins-version index 248ba5dc29..6b01b03134 100755 --- a/build-scripts/make-jenkins-version +++ b/build-scripts/make-jenkins-version @@ -5,5 +5,5 @@ then echo $(date +%Y%m%d).${BUILD_NUMBER}.$(git rev-parse --short $GIT_COMMIT) else branch="$(echo ${GIT_BRANCH} | tr ' /-' _)" - echo $(date +%Y%m%d).${branch}-${BUILD_NUMBER}.$(git rev-parse --short $GIT_COMMIT) + echo $(date +%Y%m%d).${branch}_${BUILD_NUMBER}.$(git rev-parse --short $GIT_COMMIT) fi