diff options
author | Simo Sorce <idra@samba.org> | 2009-12-15 09:17:25 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2009-12-15 09:17:25 -0500 |
commit | 7f956869ff7a8e481afb9db0c52a0d74d809867a (patch) | |
tree | c4255bd8b355ad112b91d0c3b8a909136590097a | |
parent | f34607908367cce84fa9d8331c924135583359e6 (diff) | |
download | samba-7f956869ff7a8e481afb9db0c52a0d74d809867a.tar.gz samba-7f956869ff7a8e481afb9db0c52a0d74d809867a.tar.bz2 samba-7f956869ff7a8e481afb9db0c52a0d74d809867a.zip |
Fix release script to work with recent git versions
-rwxr-xr-x | lib/talloc/script/release-script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/talloc/script/release-script.sh b/lib/talloc/script/release-script.sh index 4804f6ff58..fd5c1eff5d 100755 --- a/lib/talloc/script/release-script.sh +++ b/lib/talloc/script/release-script.sh @@ -23,7 +23,7 @@ fi git clean -f -x -d lib/talloc git clean -f -x -d lib/replace -curbranch=`git-branch |grep "^*" | tr -d "* "` +curbranch=`git branch |grep "^*" | tr -d "* "` version=$1 strver=`echo ${version} | tr "." "-"` |