From 4d94e40ddd372dd39c347f5d26e4c47e890310fe Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 27 Dec 2013 14:06:56 -0400 Subject: [PATCH] de-verbose cp --- doc/special_remotes/external/example.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/special_remotes/external/example.sh b/doc/special_remotes/external/example.sh index 1a38e0e387..60425dfac9 100755 --- a/doc/special_remotes/external/example.sh +++ b/doc/special_remotes/external/example.sh @@ -87,7 +87,7 @@ while read line; do # XXX when possible, send PROGRESS calclocation "$key" mkdir -p "$(dirname "$LOC")" - if runcmd cp -v "$file" "$LOC"; then + if runcmd cp "$file" "$LOC"; then echo TRANSFER-SUCCESS STORE "$key" else echo TRANSFER-FAILURE STORE "$key" @@ -98,7 +98,7 @@ while read line; do # the key, outputting to the file. # XXX when easy to do, send PROGRESS calclocation "$key" - if runcmd cp -v "$LOC" "$file"; then + if runcmd cp "$LOC" "$file"; then echo TRANSFER-SUCCESS RETRIEVE "$key" else echo TRANSFER-FAILURE RETRIEVE "$key"