From 43942173ed145b65df48fbd67ec1c5efbea69d7e Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 25 Apr 2023 13:21:22 -0400 Subject: [PATCH] fix(cmd): hide migrate-config command --- cmd/soft/migrate_config.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/soft/migrate_config.go b/cmd/soft/migrate_config.go index 61e6a2866dc19d04010d7382c011a8c22bd7db14..48edf556a010032b4b8a6b2827c8cb706e5b0ef4 100644 --- a/cmd/soft/migrate_config.go +++ b/cmd/soft/migrate_config.go @@ -21,8 +21,9 @@ import ( var ( migrateConfig = &cobra.Command{ - Use: "migrate-config", - Short: "Migrate config to new format", + Use: "migrate-config", + Short: "Migrate config to new format", + Hidden: true, RunE: func(cmd *cobra.Command, _ []string) error { keyPath := os.Getenv("SOFT_SERVE_KEY_PATH") reposPath := os.Getenv("SOFT_SERVE_REPO_PATH")