fix smooth brain wrong if check in config

axtloss/rework-partitioning
axtlos 3 years ago
parent 3c88ac8487
commit a9dcf84695
No known key found for this signature in database
GPG Key ID: A468AFD71DD51D4A

@ -156,7 +156,7 @@ pub fn read_config(configpath: &str) {
users::root_pass(config.rootpass.as_str());
println!();
info(format!("Installing desktop : {}", config.desktop));
if config.desktop == "none" || config.desktop.is_empty() {
if config.desktop != "none" || !config.desktop.is_empty() {
desktops::choose_pkgs(config.desktop.as_str());
}
println!();

Loading…
Cancel
Save