key: return an error if subcommand is unknown

This commit is contained in:
Michael Eischer 2024-01-27 15:33:49 +01:00
parent e44e4b00a6
commit 765729d009
1 changed files with 2 additions and 2 deletions

View File

@ -250,9 +250,9 @@ func runKey(ctx context.Context, gopts GlobalOptions, opts KeyOptions, args []st
}
return changePassword(ctx, repo, gopts, opts.NewPasswordFile)
default:
return errors.Fatal("invalid operation")
}
return nil
}
func loadPasswordFromFile(pwdFile string) (string, error) {