diff options
-rwxr-xr-x | libs/git | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -179,7 +179,8 @@ git_patch() { cd "$repository_path" git checkout "$branch" 2> /dev/null > /dev/null - git am "$patch" + + git am "$patch" || git am --abort ) } |