summaryrefslogtreecommitdiff
path: root/bin/pkg
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-06-23 21:27:44 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2008-06-23 21:27:44 +0200
commita9727e3e959af427363e1d756d077572390cd345 (patch)
treee1e9c6f65043b611e32dc4575777972bff59db0e /bin/pkg
parentd04de4e04a8a26dd10696132cc8cb182f8b3bb3a (diff)
oops
Diffstat (limited to 'bin/pkg')
-rwxr-xr-xbin/pkg4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pkg b/bin/pkg
index 4219aad..149388a 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -134,8 +134,8 @@ vcs_add () {
vcs_incoming () {
# [ -d .vcs ] && vcs incoming will not work here, since the [] will return
# something. We need the return value of vcs.
- if ([ -d .hg ]) && hg incoming
- if ([ -d .git ]) && false
+ if ([ -d .hg ]) {hg --quiet incoming; return}
+ if ([ -d .git ]) {false ; return}
}
vcs_update () {