Check file system after the resize, like PM does

This commit is contained in:
Aurélien Gâteau 2014-08-06 11:52:27 +02:00
parent f5ccc616b9
commit a267ef856e

View File

@ -258,6 +258,7 @@ ResizePartitionJob::exec()
jobs << Calamares::job_ptr( new ResizeFileSystemJob( &context, newLength ) ); jobs << Calamares::job_ptr( new ResizeFileSystemJob( &context, newLength ) );
} }
} }
jobs << Calamares::job_ptr( new CheckFileSystemJob( partition() ) );
return execJobList( jobs ); return execJobList( jobs );
} }