[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Quilt-dev] [PATCH] fix status gerneration in files verbose
From: |
Sebastian Ott |
Subject: |
[Quilt-dev] [PATCH] fix status gerneration in files verbose |
Date: |
Fri, 17 Jul 2009 15:08:41 +0200 (CEST) |
User-agent: |
Alpine 2.00 (LFD 1167 2008-08-23) |
hi,
quilt does not show the usefull "+" and "-" in front of each file from
the quilt files -v output
the following one-liner fixes that
Index: quilt/quilt/files.in
===================================================================
--- quilt.orig/quilt/files.in
+++ quilt/quilt/files.in
@@ -142,7 +142,7 @@ list_files_in_patch()
echo "$file"
else
status=" "
- if [ -s $(backup_file_name $patch $file) ]
+ if ! [ -s $(backup_file_name $patch $file) ]
then
if ! [ -s $file ]
then
- [Quilt-dev] [PATCH] fix status gerneration in files verbose,
Sebastian Ott <=