mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-01 19:35:36 -04:00
[libcalamares] Fix inverted logic
Reported by bshah.
This commit is contained in:
parent
b283ad69d5
commit
ec09272b81
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ Settings::Settings( const QString& settingsFilePath,
|
||||||
|
|
||||||
m_brandingComponentName = requireString( config, "branding" );
|
m_brandingComponentName = requireString( config, "branding" );
|
||||||
m_promptInstall = requireBool( config, "prompt-install", false );
|
m_promptInstall = requireBool( config, "prompt-install", false );
|
||||||
m_doChroot = requireBool( config, "dont-chroot", true );
|
m_doChroot = !requireBool( config, "dont-chroot", false );
|
||||||
}
|
}
|
||||||
catch ( YAML::Exception& e )
|
catch ( YAML::Exception& e )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue