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"
This commit is contained in:
parent
bddff249ae
commit
fa9333e99f
6 changed files with 6 additions and 6 deletions
|
@ -209,7 +209,7 @@ checkSharedClone = inRepo Git.Objects.isSharedClone
|
|||
initSharedClone :: Bool -> Annex ()
|
||||
initSharedClone False = return ()
|
||||
initSharedClone True = do
|
||||
showSideAction "Repository was cloned with --shared; setting annex.hardlink=true and making repository untrusted."
|
||||
showLongNote "Repository was cloned with --shared; setting annex.hardlink=true and making repository untrusted."
|
||||
u <- getUUID
|
||||
trustSet u UnTrusted
|
||||
setConfig (annexConfig "hardlink") (Git.Config.boolConfig True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue