From f2e79210f9d867b758130b6549d2dba222c0d4a0 Mon Sep 17 00:00:00 2001 From: Taylor Blau Date: Mon, 11 Sep 2017 10:52:50 -0400 Subject: [PATCH] commands/migrate: format incorrect indentation --- commands/command_migrate.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/command_migrate.go b/commands/command_migrate.go index 2b34e690..0abc968c 100644 --- a/commands/command_migrate.go +++ b/commands/command_migrate.go @@ -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) }) }