[Cluster-devel] [PATCH] gfs2-utils: Fix up make-tarball.sh

Andrew Price anprice at redhat.com
Wed Jul 6 12:46:14 UTC 2011


Fix the way that make-tarball.sh finds out the current git branch

Signed-off-by: Andrew Price <anprice at redhat.com>
---
 make-tarball.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/make-tarball.sh b/make-tarball.sh
index 71d78fe..fd12195 100755
--- a/make-tarball.sh
+++ b/make-tarball.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 FILES=`git ls-files | sed -e's/^/gfs2-utils\//'`
-BRANCH=`git show-branch --current | sed -e's/.*\[//' -e's/\].*$//'`
+BRANCH=`git branch | grep '^\*' | cut -d' ' -f2`
 DESC=`git describe 2>/dev/null`
 
 if [ $? != 128 ]; then
-- 
1.7.5.4




More information about the Cluster-devel mailing list