We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 533da67 commit 485b2aeCopy full SHA for 485b2ae
main.go
@@ -31,6 +31,11 @@ func Run(args Cmd.Args, deps Dependencies) error {
31
args.Src = filepath.Join(homeDir, ".ssh")
32
}
33
34
+ // default to YAML
35
+ if !(args.ToYAML && args.ToJSON && args.ToSSH) {
36
+ args.ToYAML = true
37
+ }
38
+
39
isValid, notValidReason := Cmd.CheckConvertArgvValid(args)
40
if !isValid {
41
deps.Println(notValidReason)
0 commit comments