From 8b3fbeef395295c0d2de61265632ed30eda7bf0a Mon Sep 17 00:00:00 2001 From: Kevin Geiss Date: Mon, 14 Nov 2005 09:42:36 -0700 Subject: [PATCH] git-cvsexportcommit.perl: exit with non-0 status if patch fails. Signed-off-by: Junio C Hamano --- git-cvsexportcommit.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl index da7dcda3b6..d49494abc2 100755 --- a/git-cvsexportcommit.perl +++ b/git-cvsexportcommit.perl @@ -190,7 +190,7 @@ if ($dirtypatch) { print "NOTE: One or more hunks failed to apply cleanly.\n"; print "Resolve the conflicts and then commit using:n"; print "\n $cmd\n\n"; - exit; + exit(1); } -- 2.11.4.GIT