diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-03-05 15:43:06 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-03-05 15:43:21 +0100 |
commit | 0e9786f3a5a81d5fd9616f348b8d777569224873 (patch) | |
tree | e4c0290877550331cdeb6bdbd3c9bb85aca13090 | |
parent | 2b30dcc138112114c8ab7360061ced33fc8f148f (diff) | |
download | scripts-0e9786f3a5a81d5fd9616f348b8d777569224873.tar.gz scripts-0e9786f3a5a81d5fd9616f348b8d777569224873.zip |
Allow to create tarballs on detached branch
For example, for a particular git tag
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 2c769321341c07e85339cf60778cdb7d102f20b1)
-rwxr-xr-x | create_all_tarballs | 2 | ||||
-rwxr-xr-x | create_tarball | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/create_all_tarballs b/create_all_tarballs index 9891e68..dd5e9cc 100755 --- a/create_all_tarballs +++ b/create_all_tarballs @@ -39,7 +39,7 @@ if [[ ! -e .git ]] || fi # Check remote branch -branch=`git branch --contains HEAD | grep -v "no branch" | head -n1 | cut -c 3-` +branch=`git branch --contains HEAD | egrep -v "no branch|detached" | head -n1 | cut -c 3-` if [[ -z "$branch" ]] || [[ -z "`git rev-parse --symbolic-full-name --remotes=\"*/$branch\"`" ]]; then echo "There is not active upstream branch. Exiting..." diff --git a/create_tarball b/create_tarball index c97b828..cce38bf 100755 --- a/create_tarball +++ b/create_tarball @@ -27,7 +27,7 @@ if [[ ! -e .git ]] || fi # Check remote branch -branch=`git branch --contains HEAD | grep -v "no branch" | head -n1 | cut -c 3-` +branch=`git branch --contains HEAD | egrep -v "no branch|detached" | head -n1 | cut -c 3-` if [[ -z "$branch" ]] || [[ -z "`git rev-parse --symbolic-full-name --remotes=\"*/$branch\"`" ]]; then echo "There is not active upstream branch. Exiting..." |