diff options
author | xengineering <mail2xengineering@protonmail.com> | 2020-01-29 21:12:50 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2020-01-29 21:12:50 +0100 |
commit | 7a26c8516f712ee8ea58690bb5dd696efa920295 (patch) | |
tree | cc081228380697fce64fce448f34368437731dbd /stages | |
parent | b1157730870955e662154816ea3450117b45d8ee (diff) | |
download | archinstall-7a26c8516f712ee8ea58690bb5dd696efa920295.tar archinstall-7a26c8516f712ee8ea58690bb5dd696efa920295.tar.zst archinstall-7a26c8516f712ee8ea58690bb5dd696efa920295.zip |
Fix Bug "Unconfigured Desktop"
Diffstat (limited to 'stages')
-rw-r--r-- | stages/second_stage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stages/second_stage.sh b/stages/second_stage.sh index 2ce2ec7..192b946 100644 --- a/stages/second_stage.sh +++ b/stages/second_stage.sh @@ -37,6 +37,6 @@ bash configure_users.sh $admin_username $DEFAULT_PASSWORD bash install_bootloader.sh $efi_partition_path $system_encryption $main_partition_path -if [ "$desktop_wanted" = "yes" ]; then +if [ "$desktop" = "yes" ]; then bash configure_desktop.sh $desktop fi |