File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ Subcommands:
125
125
dist Build distribution artifacts
126
126
install Install distribution artifacts
127
127
run, r Run tools contained in this repository
128
+ setup Create a config.toml (making it easier to use `x.py` itself)
128
129
129
130
To learn more about a subcommand, run `./x.py <subcommand> -h`" ,
130
131
) ;
@@ -472,15 +473,21 @@ Arguments:
472
473
) ;
473
474
}
474
475
"setup" => {
475
- subcommand_help. push_str (
476
+ subcommand_help. push_str ( & format ! (
476
477
"\n
478
+ x.py setup creates a `config.toml` which changes the defaults for x.py itself.
479
+
477
480
Arguments:
478
481
This subcommand accepts a 'profile' to use for builds. For example:
479
482
480
483
./x.py setup library
481
484
482
- The profile is optional and you will be prompted interactively if it is not given." ,
483
- ) ;
485
+ The profile is optional and you will be prompted interactively if it is not given.
486
+ The following profiles are available:
487
+
488
+ {}" ,
489
+ Profile :: all_for_help( " " ) . trim_end( )
490
+ ) ) ;
484
491
}
485
492
_ => { }
486
493
} ;
You can’t perform that action at this time.
0 commit comments