We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a97eff commit 2bfa964Copy full SHA for 2bfa964
src/main.rs
@@ -34,11 +34,10 @@ fn main() {
34
let frontend = frontend.clone();
35
36
thread::spawn(move || {
37
- let afrim_conf =
38
- AfrimConfig::from_file(&args.config_file).unwrap_or_else(|err| {
39
- frontend.raise_error("Problem parsing config file", &err.to_string());
40
- process::exit(1);
41
- });
+ let afrim_conf = AfrimConfig::from_file(&args.config_file).unwrap_or_else(|err| {
+ frontend.raise_error("Problem parsing config file", &err.to_string());
+ process::exit(1);
+ });
42
43
// End the program if check only.
44
if args.check {
0 commit comments