mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05: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( "There are no partitons to install on." ); },
|
||||
m_core->deviceModel()->rowCount() > 0, // satisfied
|
||||
true // required
|
||||
#ifdef DEBUG_PARTITION_UNSAFE
|
||||
false // optional
|
||||
#else
|
||||
true // required
|
||||
#endif
|
||||
} );
|
||||
|
||||
return l;
|
||||
|
|
Loading…
Add table
Reference in a new issue