diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-12-29 18:01:39 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-12-29 18:01:39 +0100 |
commit | 065f17afd86960f0d61f3f634becd698a7f74c6a (patch) | |
tree | 53fbb29d638e3c4671847fdccda33cbfaa979c6b /bin | |
parent | b45548b814d95164bfe11c7538784ce06d06f62f (diff) |
bin/pkg: Fixed syntax error in vcs_upgrade
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/pkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -231,7 +231,7 @@ function vcs_log { function vcs_upgrade { typeset IFS=$'\n' line typeset -i merge_ok=0 - for line in $(git branch) { + for line in $(git branch); { [[ $line == '* master' ]] && ok=1 } if ((ok)) { |