Comment out

This commit is contained in:
Shubham Jangra 2019-05-19 00:51:15 +05:30
parent 07b2ce3054
commit 3675a199bf
1 changed files with 4 additions and 1 deletions

View File

@ -44,7 +44,10 @@ public:
void run() override
{
ExternalCommand lsblkCmd(QStringLiteral("lsblk"), { QStringLiteral("--nodeps"), QStringLiteral("--json") });
lsblkCmd.run();
// ExternalCommadHelper will refuse to run this or any other command which is not whitelisted.
// See src/util/externalcommand_whitelist.h for whitelisted commands.
lsblkCmd.run();
qDebug().noquote() << lsblkCmd.output();
}
};