summaryrefslogtreecommitdiff
path: root/bin/pkg
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-12-29 18:01:39 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2008-12-29 18:01:39 +0100
commit065f17afd86960f0d61f3f634becd698a7f74c6a (patch)
tree53fbb29d638e3c4671847fdccda33cbfaa979c6b /bin/pkg
parentb45548b814d95164bfe11c7538784ce06d06f62f (diff)
bin/pkg: Fixed syntax error in vcs_upgrade
Diffstat (limited to 'bin/pkg')
-rwxr-xr-xbin/pkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pkg b/bin/pkg
index 352e3df..0b0a0c2 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -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)) {