summaryrefslogtreecommitdiff
path: root/doc/special_remotes
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-12-27 14:06:56 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-12-27 14:06:56 -0400
commit922ed7595c59301a7276f5bfcc4066131364e990 (patch)
tree3d1ab88d223964da00b0b1e24671bced5a076975 /doc/special_remotes
parentf47ce33244e20a80bdee3f9cc2941ea01f4a5462 (diff)
de-verbose cp
Diffstat (limited to 'doc/special_remotes')
-rwxr-xr-xdoc/special_remotes/external/example.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/special_remotes/external/example.sh b/doc/special_remotes/external/example.sh
index 1a38e0e38..60425dfac 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"