We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49c50d5 + 7e72d29 commit 0467f0aCopy full SHA for 0467f0a
1 file changed
cmd/tx/main.go
@@ -461,6 +461,15 @@ func Main() {
461
), 1)
462
}
463
464
+ if !arguments.Translations &&
465
+ (arguments.All || len(arguments.Languages) > 0) {
466
+ return cli.Exit(errorColor(
467
+ "It doesn't make sense to use the '--all' or "+
468
+ "'--language' flag without the "+
469
+ "'--translation' flag",
470
+ ), 1)
471
+ }
472
+
473
err = txlib.PullCommand(&cfg, &api, &arguments)
474
if err != nil {
475
return cli.Exit(err, 1)
0 commit comments