Merge pull request #14565 from spowelljr/fixGUIBuild

GUI: Fix build for Linux & Windows
pull/14546/head
Steven Powell 2022-07-12 13:08:12 -07:00 committed by GitHub
commit ddfa06d313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ void Operator::sshConsole()
}
QProcess *process = new QProcess(this);
process->start(QStandardPaths::findExecutable(terminal), { "-e", commmand });
process->start(QStandardPaths::findExecutable(terminal), { "-e", command });
#endif
}