On Wed, Nov 10, 2010 at 1:27 PM, Vadym Chepkov <vchepkov at gmail.com> wrote: > well, that does't work well with shell's "set -e" Just use the usual trick for ignoring non-zero exit status: hg incoming || true and you can keep "set -e". Greg