diff options
| author | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-23 21:27:44 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-23 21:27:44 +0200 | 
| commit | a9727e3e959af427363e1d756d077572390cd345 (patch) | |
| tree | e1e9c6f65043b611e32dc4575777972bff59db0e | |
| parent | d04de4e04a8a26dd10696132cc8cb182f8b3bb3a (diff) | |
oops
| -rwxr-xr-x | bin/pkg | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -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 () {  | 
