Skip to content

Commit

Permalink
fix(cmd): hide migrate-config command
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed May 2, 2023
1 parent 7d5563b commit 4394217
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/soft/migrate_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 4394217

Please sign in to comment.