Merge pull request #2572 from git-lfs/go-fmt

commands/migrate: format incorrect indentation
This commit is contained in:
Taylor Blau 2017-09-11 15:10:34 -04:00 committed by GitHub
commit 18b40ce981

@ -249,7 +249,7 @@ func init() {
cmd.PersistentFlags().StringSliceVar(&migrateExcludeRefs, "exclude-ref", nil, "An explicit list of refs to exclude")
cmd.PersistentFlags().BoolVar(&migrateEverything, "everything", false, "Migrate all local references")
cmd.PersistentPreRun = func(_ *cobra.Command, args []string) {
cmd.PersistentPreRun = func(_ *cobra.Command, args []string) {
// Initialize local storage before running any child
// subcommands, since migrations require lfs.TempDir to
// be initialized within ".git/lfs/objects".
@ -260,6 +260,6 @@ func init() {
localstorage.InitStorageOrFail()
}
cmd.AddCommand(importCmd, info)
cmd.AddCommand(importCmd, info)
})
}