[pacman-dev] [PATCH 2/4] pacdiff: be more verbose if we rename or remove
Florian Pritz
bluewind at xinu.at
Wed Dec 19 17:33:49 EST 2012
Doesn't hurt and reassures the user that we did the right thing.
Signed-off-by: Florian Pritz <bluewind at xinu.at>
---
contrib/pacdiff.sh.in | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/contrib/pacdiff.sh.in b/contrib/pacdiff.sh.in
index 5797fef..2e67424 100644
--- a/contrib/pacdiff.sh.in
+++ b/contrib/pacdiff.sh.in
@@ -73,21 +73,21 @@ while IFS= read -u 3 -r -d '' pacfile; do
printf " found for \e[0;35m%s\e[0m\n" "$file"
if [ ! -f "$file" ]; then
echo " $file does not exist"
- rm -i "$pacfile"
+ rm -iv "$pacfile"
continue
fi
check="$(cmp "$pacfile" "$file")"
if [ -z "${check}" ]; then
echo " Files are identical, removing..."
- rm "$pacfile"
+ rm -v "$pacfile"
else
echo -n " File differences found. (V)iew, (S)kip, (R)emove: [v/s/r] "
while read c; do
case $c in
- r|R) rm "$pacfile"; break ;;
+ r|R) rm -v "$pacfile"; break ;;
v|V)
$diffprog "$pacfile" "$file"
- rm -i "$pacfile"; break ;;
+ rm -iv "$pacfile"; break ;;
s|S) break ;;
*) echo -n " Invalid answer. Try again: [v/s/r] "; continue ;;
esac
--
1.8.0.2
More information about the pacman-dev
mailing list