diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-05-07 23:19:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-07 23:19:51 (GMT) |
commit | 2aef4ba50c19ee83dd9670b06536c99b65d57931 (patch) | |
tree | 8aa1f362b5589fb5cf6652abb819179a87b53483 | |
parent | aef939b0bdc3bd7ac2ee8c40943cb25ee8b1f023 (diff) | |
download | hdf5-2aef4ba50c19ee83dd9670b06536c99b65d57931.zip hdf5-2aef4ba50c19ee83dd9670b06536c99b65d57931.tar.gz hdf5-2aef4ba50c19ee83dd9670b06536c99b65d57931.tar.bz2 |
Use git command to get branch name (#1749)
-rwxr-xr-x | bin/bbrelease | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bbrelease b/bin/bbrelease index 90cb72b..6120e37 100755 --- a/bin/bbrelease +++ b/bin/bbrelease @@ -239,7 +239,7 @@ if [ X$revmode = Xyes ]; then # Copy old version of config/lt_vers.am, since it's hard to # "undo" changes to it. cp config/lt_vers.am $tmpdir - branch=`git branch | grep '*' | awk '{print $NF}'` + branch=`git symbolic-ref -q --short HEAD` revision=`git rev-parse --short HEAD` # Set version information to m.n.r-r$revision. # (h5vers does not correctly handle just m.n.r-$today.) |