File tree Expand file tree Collapse file tree 4 files changed +4
-221
lines changed Expand file tree Collapse file tree 4 files changed +4
-221
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,5 +11,7 @@ cargo test --verbose --all
1111
1212# Generate the pages
1313mkdir -p output
14+ cargo run --release --bin=rustup-available-packages-web -- print_config -c config.yaml
15+ cat config.yaml
1416cargo run --release --bin=rustup-available-packages-web -- render -c config.yaml
1517ln -fs x86_64-unknown-linux-gnu.html output/index.html
File renamed without changes.
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ use serde::Serialize;
1515use structopt:: StructOpt ;
1616use tiers_table:: TiersTable ;
1717
18+ mod config_gen;
1819mod opts;
19- mod tear_ducts;
2020mod tiers_table;
2121
2222#[ derive( StructOpt ) ]
@@ -201,7 +201,7 @@ fn main() -> anyhow::Result<()> {
201201# $ cargo r -p rustup-available-packages-web -- print_config -c config.yaml
202202" ;
203203
204- let config = tear_ducts :: gen_config ( ) ?;
204+ let config = config_gen :: gen_config ( ) ?;
205205 if let Some ( path) = config_path {
206206 if let Some ( parent) = path. parent ( ) {
207207 create_dir_all ( parent) ?;
You can’t perform that action at this time.
0 commit comments