summaryrefslogtreecommitdiff
path: root/Command/TestRemote.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-10-11 13:29:44 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-10-11 13:29:44 -0400
commitb3e761b6cf42cb537e7e8e8db4d74b12c7dbfd8a (patch)
tree3b799f34356a5ae27371ff5d04ab6dbec39e62ad /Command/TestRemote.hs
parent017af7233d8d6520d1673218bcd3fadce73d2b1d (diff)
use action, not sideAction
sideAction is for things not generally related to the current action being performed. And, it adds a newline after the side action. This was not the right thing to use for stuff like "checksum", where doing a checksum is part of the git annex get process, and indeed we want it to display "(checksum...) ok"
Diffstat (limited to 'Command/TestRemote.hs')
-rw-r--r--Command/TestRemote.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/TestRemote.hs b/Command/TestRemote.hs
index be1b9a324..f66a77ba7 100644
--- a/Command/TestRemote.hs
+++ b/Command/TestRemote.hs
@@ -63,7 +63,7 @@ start :: Int -> RemoteName -> CommandStart
start basesz name = do
showStart "testremote" name
r <- either error id <$> Remote.byName' name
- showSideAction "generating test keys"
+ showAction "generating test keys"
fast <- Annex.getState Annex.fast
ks <- mapM randKey (keySizes basesz fast)
rs <- catMaybes <$> mapM (adjustChunkSize r) (chunkSizes basesz fast)