Skip to content

Commit 6dd5d95

Browse files
committed
Remove ctn_OCTOXBPS_SUDO_PARAMS from startPkexec
The call to `WMHelper::getSUCommand()` was reverted back to the string literal "pkexec", but `ctn_OCTOXBPS_SUDO_PARAMS` was still being concatenated into `sl` causing an error. This commit reverts `startPkexec()` back to how it was as of v0.3.0
1 parent c358880 commit 6dd5d95

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

notifier/mainwindow.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,6 @@ void MainWindow::startPkexec()
571571
QProcess *xbps = new QProcess();
572572
connect(xbps, SIGNAL(finished(int)), this, SLOT(finishedPkexec(int)));
573573
QStringList sl;
574-
sl << ctn_OCTOXBPS_SUDO_PARAMS;
575574
sl << QStringLiteral("/usr/bin/xbps-install");
576575
sl << QStringLiteral("-Sy");
577576
xbps->start("pkexec", sl);

0 commit comments

Comments
 (0)