From 836578ab769a6fcea515f656e400f3d5baf2ac24 Mon Sep 17 00:00:00 2001 From: md_5 Date: Sat, 23 Mar 2013 10:05:32 +1100 Subject: [PATCH] Abort any existing patches when applying --- applyPatches.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/applyPatches.sh b/applyPatches.sh index 70c860b..8ef677f 100755 --- a/applyPatches.sh +++ b/applyPatches.sh @@ -21,6 +21,7 @@ function applyPatch { git fetch upstream >/dev/null 2>&1 git reset --hard upstream/upstream echo " Applying patches to $target..." + git am --abort git am --3way $basedir/${what}-Patches/*.patch if [ "$?" != "0" ]; then echo " Something did not apply cleanly to $target."