Merge pull request #13976 from spowelljr/addUserToGui

Add `--user` flag to GUI commands
pull/13975/head
Steven Powell 2022-04-18 16:01:49 -07:00 committed by GitHub
commit 78e10c2663
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -519,7 +519,7 @@ bool Window::sendMinikubeCommand(QStringList cmds, QString &text)
if (program.isEmpty()) {
return false;
}
QStringList arguments;
QStringList arguments = { "--user", "minikube-gui" };
arguments << cmds;
QProcess *process = new QProcess(this);