diff options
Diffstat (limited to 'git-applymbox.sh')
-rwxr-xr-x | git-applymbox.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/git-applymbox.sh b/git-applymbox.sh index a83246cad8..79abce2a25 100755 --- a/git-applymbox.sh +++ b/git-applymbox.sh @@ -82,7 +82,11 @@ do do git-applypatch .dotest/msg-clean .dotest/patch .dotest/info "$signoff" case "$?" in - 0 | 2 ) + 0) + # Remove the cleanly applied one to reduce clutter. + rm -f .dotest/$i + ;; + 2) # 2 is a special exit code from applypatch to indicate that # the patch wasn't applied, but continue anyway ;; |