commands/command_untrack.go: print fixed usage msg

In commit ff0f378778f46f9b87f78d68f797a194cf32d6cf of
PR #4781 a usage message for the "git lfs untrack" command was
made translatable; however, since this only contains a fixed
command example which references the man pages, we can avoid
translating it.
This commit is contained in:
Chris Darroch 2022-01-27 16:15:04 -08:00
parent 04c85a027a
commit 6acd3e4e5a

@ -18,7 +18,7 @@ func untrackCommand(cmd *cobra.Command, args []string) {
installHooks(false)
if len(args) < 1 {
Print(tr.Tr.Get("git lfs untrack <path> [path]*"))
Print("git lfs untrack <path> [path]*")
return
}