mirror of
https://github.com/parchlinux/calamares.git
synced 2025-03-01 05:15:44 -05:00
[partition] Mark this use of "mount" as debugging-only
- This call doesn't need to be replaced by the mount helpers in the partition service, since it's just debug output telling what *is* mounted.
This commit is contained in:
parent
c14239ca30
commit
5a18a6cba9
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ CreatePartitionTableJob::exec()
|
||||||
cDebug() << "lsblk:\n" << lsblk.readAllStandardOutput();
|
cDebug() << "lsblk:\n" << lsblk.readAllStandardOutput();
|
||||||
|
|
||||||
QProcess mount;
|
QProcess mount;
|
||||||
mount.setProgram( "mount" );
|
mount.setProgram( "mount" ); // Debug output only, not mounting something
|
||||||
mount.setProcessChannelMode( QProcess::MergedChannels );
|
mount.setProcessChannelMode( QProcess::MergedChannels );
|
||||||
mount.start();
|
mount.start();
|
||||||
mount.waitForFinished();
|
mount.waitForFinished();
|
||||||
|
|
Loading…
Add table
Reference in a new issue