diff options
author | Motiejus Jakštys <[email protected]> | 2013-01-30 21:40:28 +0000 |
---|---|---|
committer | Motiejus Jakštys <[email protected]> | 2013-01-30 21:40:28 +0000 |
commit | a1d0af379cc254849585b2c184a68f1596368eba (patch) | |
tree | c5c0f1c538ec3261327a5407732fb628f8a0a8a9 /kerl | |
parent | 9e8a3e569a32b1c42ed4f61510cd1b7f74498921 (diff) | |
download | kerl-a1d0af379cc254849585b2c184a68f1596368eba.tar.gz kerl-a1d0af379cc254849585b2c184a68f1596368eba.tar.bz2 kerl-a1d0af379cc254849585b2c184a68f1596368eba.zip |
Fix: do not hardcode origin/ to ref
This allows building tags and all other funny kinds of refs.
Diffstat (limited to 'kerl')
-rwxr-xr-x | kerl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -260,7 +260,7 @@ do_git_build() if [ $? -eq 0 ]; then git checkout $2 > /dev/null 2>&1 else - git checkout -b $2 origin/$2 > /dev/null 2>&1 + git checkout -b $2 $2 > /dev/null 2>&1 fi if [ $? -ne 0 ]; then echo "Couldn't checkout specified version" |