Restore args code, mostly
This commit is contained in:
parent
02f1e0efd7
commit
46c40e8650
1 changed files with 4 additions and 1 deletions
|
@ -11,5 +11,8 @@ mod config;
|
|||
mod tests;
|
||||
|
||||
fn main() {
|
||||
config::get_config();
|
||||
let args = args::get_matches();
|
||||
if args.subcommand_name().unwrap() == "build" {
|
||||
config::get_config();
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue