We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've spent a while trying to debug this, but I'm not getting anywhere. Do you have an idea why this is happening?
hawaii.launcher: Launching "/run/current-system/profile/bin/env" from "/gnu/store/mjj6n921hm6n0agllpf34dayvf73bryi-dump-environment-1/share/applications/dump-environment.desktop" hawaii.launcher: Failed to launch "/gnu/store/mjj6n921hm6n0agllpf34dayvf73bryi-dump-environment-1/share/applications/dump-environment.desktop" (dump-environment)
The relevant code seems to be here, and QProcess::ForwardedChannels should let me see the environment in the log.
QProcess::ForwardedChannels
QProcess *process = new QProcess(this); process->setProgram(command); process->setArguments(args); process->setProcessEnvironment(env); process->setProcessChannelMode(QProcess::ForwardedChannels); m_apps[entry.fileName()] = process; connect(process, SIGNAL(finished(int)), this, SLOT(finished(int))); process->start(); if (!process->waitForStarted()) { qCWarning(LAUNCHER, "Failed to launch \"%s\" (%s)", qPrintable(entry.fileName()), qPrintable(entry.name())); return false; }
The text was updated successfully, but these errors were encountered:
Where you able to reproduce this?
Sorry, something went wrong.
Another problem I'm having is that it doesn't find some of the icons.
plfiorini
No branches or pull requests
I've spent a while trying to debug this, but I'm not getting anywhere. Do you have an idea why this is happening?
The relevant code seems to be here, and
QProcess::ForwardedChannels
should let me see the environment in the log.The text was updated successfully, but these errors were encountered: