You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/sops/main.go
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -189,11 +189,11 @@ func main() {
189
189
},
190
190
cli.StringFlag{
191
191
Name: "input-type",
192
-
Usage: "currently json, yaml, dotenv and binary are supported. If not set, sops will use the file's extension to determine the type",
192
+
Usage: "currently ini, json, yaml, dotenv and binary are supported. If not set, sops will use the file's extension to determine the type",
193
193
},
194
194
cli.StringFlag{
195
195
Name: "output-type",
196
-
Usage: "currently json, yaml, dotenv and binary are supported. If not set, sops will use the input file's extension to determine the output format",
196
+
Usage: "currently ini, json, yaml, dotenv and binary are supported. If not set, sops will use the input file's extension to determine the output format",
197
197
},
198
198
cli.StringFlag{
199
199
Name: "filename",
@@ -508,6 +508,10 @@ func main() {
508
508
Name: "yes, y",
509
509
Usage: `pre-approve all changes and run non-interactively`,
510
510
},
511
+
cli.StringFlag{
512
+
Name: "input-type",
513
+
Usage: "currently ini, json, yaml, dotenv and binary are supported. If not set, sops will use the file's extension to determine the type",
0 commit comments