Do not prevent validation errors to launch the GUI
This commit is contained in:
parent
f977aff82d
commit
7170b347db
1 changed files with 3 additions and 1 deletions
|
@ -73,7 +73,9 @@ die $@ if $@ && $opt{gui};
|
||||||
Slic3r::Config->set($_ => $cli_options{$_}) for keys %cli_options;
|
Slic3r::Config->set($_ => $cli_options{$_}) for keys %cli_options;
|
||||||
|
|
||||||
# validate configuration, convert options like --print-center to arrayrefs, init extruders etc.
|
# validate configuration, convert options like --print-center to arrayrefs, init extruders etc.
|
||||||
Slic3r::Config->validate;
|
# ignore errors if we're launching the GUI
|
||||||
|
eval { Slic3r::Config->validate };
|
||||||
|
die $@ unless $gui;
|
||||||
|
|
||||||
# save configuration
|
# save configuration
|
||||||
Slic3r::Config->save($opt{save}) if $opt{save};
|
Slic3r::Config->save($opt{save}) if $opt{save};
|
||||||
|
|
Loading…
Reference in a new issue