From 728ecf5e4e5c55be6087cd812ec49facc7155f93 Mon Sep 17 00:00:00 2001 From: zador-blood-stained Date: Fri, 9 Dec 2016 20:18:16 +0300 Subject: [PATCH] Bugfix --- common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.sh b/common.sh index c4c3886bd1..bc64a1c383 100644 --- a/common.sh +++ b/common.sh @@ -395,7 +395,6 @@ process_patch_file() echo "Processing file $patch" >> $DEST/debug/patching.log patch --batch --silent -p1 -N < $patch >> $DEST/debug/patching.log 2>&1 - echo >> $DEST/debug/patching.log if [[ $? -ne 0 ]]; then display_alert "... $status $(basename $patch)" "failed" "wrn" @@ -403,6 +402,7 @@ process_patch_file() else display_alert "... $status $(basename $patch)" "succeeded" "info" fi + echo >> $DEST/debug/patching.log } install_external_applications()