Skip to content

Commit

Permalink
Fix optimize flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
g-r-a-n-t committed Mar 19, 2021
1 parent 7b9ef12 commit ef8cef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub fn main() {
let input_file = matches.value_of("input").unwrap();
let output_dir = matches.value_of("output-dir").unwrap();
let overwrite = matches.is_present("overwrite");
let optimize = matches.is_present("overwrite");
let optimize = matches.is_present("optimize");
let targets =
values_t!(matches.values_of("emit"), CompilationTarget).unwrap_or_else(|e| e.exit());

Expand Down

0 comments on commit ef8cef0

Please sign in to comment.