X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/cdb465e61f783be39b53f818636e907a47585096..d11b6a1b817dbbd24774f158de8e4351b82bfae0:/mr diff --git a/mr b/mr index 3dbd7e9..1253102 100755 --- a/mr +++ b/mr @@ -973,7 +973,7 @@ update = elif [ -d "$MR_REPO"/.hg ]; then hg pull "$@" && hg update "$@" elif [ -d "$MR_REPO"/_darcs ]; then - darcs pull "$@" + darcs pull -a "$@" else error "unknown repo type" fi @@ -1005,7 +1005,7 @@ commit = elif [ -d "$MR_REPO"/.hg ]; then hg commit -m "$@" && hg push elif [ -d "$MR_REPO"/_darcs ]; then - darcs commit -m "$@" && darcs push + darcs commit -a -m "$@" && darcs push -a else error "unknown repo type" fi