]> 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:

abort online operations if any command fails
authorJoey Hess <joey@kodama.kitenet.net>
Fri, 27 Jun 2008 00:22:13 +0000 (20:22 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Fri, 27 Jun 2008 00:22:13 +0000 (20:22 -0400)
mr

diff --git a/mr b/mr
index a6b5975d8a8d8b0816eb0c14e2aada8e9ecf3578..7eaadddd21e3fd223ed67d5ad0da1fee053e158c 100755 (executable)
--- a/mr
+++ b/mr
@@ -1363,8 +1363,8 @@ online =
        if [ -s ~/.mrlog ]; then
                info "running offline commands"
                mv -f ~/.mrlog ~/.mrlog.old
        if [ -s ~/.mrlog ]; then
                info "running offline commands"
                mv -f ~/.mrlog ~/.mrlog.old
-               if ! sh ~/.mrlog.old; then
-                       error "offline commands failed; left in ~/.mrlog.old"
+               if ! sh -e ~/.mrlog.old; then
+                       error "offline command failed; left in ~/.mrlog.old"
                fi
                rm -f ~/.mrlog.old
        else
                fi
                rm -f ~/.mrlog.old
        else