mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 10:25:36 -04:00
[partition] Ignore unformatted filesystem
This commit is contained in:
parent
db08d2db8b
commit
6013ed52f8
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ FillGlobalStorageJob::prettyDescription() const
|
||||||
QString path = partitionMap.value( "device" ).toString();
|
QString path = partitionMap.value( "device" ).toString();
|
||||||
QString mountPoint = partitionMap.value( "mountPoint" ).toString();
|
QString mountPoint = partitionMap.value( "mountPoint" ).toString();
|
||||||
QString fsType = partitionMap.value( "fs" ).toString();
|
QString fsType = partitionMap.value( "fs" ).toString();
|
||||||
if ( mountPoint.isEmpty() || fsType.isEmpty() )
|
if ( mountPoint.isEmpty() || fsType.isEmpty() || fsType == QString( "unformatted" ) )
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue