mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 17:05:36 -04:00
[partition] When running UNSAFE, no-install-partition is a warning
This commit is contained in:
parent
447a39d71d
commit
e2b71e669e
1 changed files with 5 additions and 1 deletions
|
@ -638,7 +638,11 @@ PartitionViewStep::checkRequirements()
|
||||||
[]{ return tr( "has at least one disk device available." ); },
|
[]{ return tr( "has at least one disk device available." ); },
|
||||||
[]{ return tr( "There are no partitons to install on." ); },
|
[]{ return tr( "There are no partitons to install on." ); },
|
||||||
m_core->deviceModel()->rowCount() > 0, // satisfied
|
m_core->deviceModel()->rowCount() > 0, // satisfied
|
||||||
true // required
|
#ifdef DEBUG_PARTITION_UNSAFE
|
||||||
|
false // optional
|
||||||
|
#else
|
||||||
|
true // required
|
||||||
|
#endif
|
||||||
} );
|
} );
|
||||||
|
|
||||||
return l;
|
return l;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue