]> git.madduck.net Git - code/myrepos.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Ignore exit code from darcs whatsnew, which can be nonzero if there are no changes...
authorJoey Hess <joey@kodama.kitenet.net>
Fri, 18 Apr 2008 16:54:39 +0000 (12:54 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Fri, 18 Apr 2008 16:54:39 +0000 (12:54 -0400)
debian/changelog
mr

index fc1676a9436ef773212760f123a128ef3b2f2b7c..344cb2f2cbcfe56908c3f601bf7454a0ac495cd3 100644 (file)
@@ -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 <joeyh@debian.org>  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 2247e52a2bc0d8eaa078ada6951d72fc886bd124..d4622d93e01c3ed60be2f4e69dd42cdffadb08f0 100755 (executable)
--- 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