From 8e2f0e9b26f076d144fe5ff9e657f477db648db3 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 18 Apr 2008 12:54:39 -0400 Subject: [PATCH] Ignore exit code from darcs whatsnew, which can be nonzero if there are no changes. Closes: #476650 --- debian/changelog | 7 +++++++ mr | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 -- 2.39.2