commands/lockverifier.go: restore message indent

In commit c744476cb73c8489699331fbfc93393786f5a6ed of
PR #4781 first part of a multi-line message was made
translatable, while the second part, which consists only of
an example "git config" command, was not.

That change is reasonable; however, some indentation
whitespace preceding the example command was lost, so we
restore it here.
This commit is contained in:
Chris Darroch 2022-01-27 21:35:29 -08:00
parent 6acd3e4e5a
commit 4201bb7f73

@ -78,7 +78,7 @@ func (lv *lockVerifier) Verify(ref *git.Ref) {
}
} else if lv.verifyState == verifyStateUnknown {
Print(tr.Tr.Get("Locking support detected on remote %q. Consider enabling it with:", cfg.PushRemote()))
Print("$ git config lfs.%s.locksverify true", lv.endpoint.Url)
Print(" $ git config lfs.%s.locksverify true", lv.endpoint.Url)
}
lv.addLocks(ref, ours, lv.ourLocks)