From 6444d13378279cfeb1477e6b68b7baf07cf6dbc4 Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Fri, 31 Oct 2003 15:53:54 +0000 Subject: - No longer verify if patches remove cleanly by reverse applying them: This doesn't always succeed, and the the equivalent of `quilt diff -z' should suffice, anyway. - Add `touch .pc/$patch' after successful refresh: Speeds up `quilt pop' after a refresh. - Update test suite. - apatch was printing a spurious newline. --- scripts/apatch.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/apatch.in') diff --git a/scripts/apatch.in b/scripts/apatch.in index 511f878..034773e 100755 --- a/scripts/apatch.in +++ b/scripts/apatch.in @@ -78,7 +78,8 @@ apply_patch() # The reject files are removed in rollback_patch. echo "$output" \ | sed -e 's/-- saving rejects to file \(.\+\)\.rej/-- rejects in file \1/' - else + elif [ -n "$output" ] + then echo "$output" fi return $status -- cgit