From: Joey Hess Date: Fri, 18 Apr 2008 16:54:39 +0000 (-0400) Subject: Ignore exit code from darcs whatsnew, which can be nonzero if there are no changes... X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/8e2f0e9b26f076d144fe5ff9e657f477db648db3?ds=sidebyside Ignore exit code from darcs whatsnew, which can be nonzero if there are no changes. Closes: #476650 --- diff --git a/debian/changelog b/debian/changelog index fc1676a..344cb2f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mr (0.27) UNRELEASED; urgency=low + + * Ignore exit code from darcs whatsnew, which can be nonzero if there + are no changes. Closes: #476650 + + -- Joey Hess Fri, 18 Apr 2008 12:54:09 -0400 + mr (0.26) unstable; urgency=low * Add -i option to start a shell if an operation fails. Closes: #474962 diff --git a/mr b/mr index 2247e52..d4622d9 100755 --- a/mr +++ b/mr @@ -1207,7 +1207,7 @@ git_status = git status "$@" || true bzr_status = bzr status "$@" cvs_status = cvs status "$@" hg_status = hg status "$@" -darcs_status = darcs whatsnew -ls "$@" +darcs_status = darcs whatsnew -ls "$@" || true svn_commit = svn commit "$@" git_commit = git commit -a "$@" && git push --all