mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Use exec instead of open to launch an executable under OS X
This commit is contained in:
parent
aaf1b2baf3
commit
353458b28a
1 changed files with 2 additions and 2 deletions
|
@ -329,8 +329,8 @@ bool createShortcut(const QString &shortcut, const QString &name, const QString
|
|||
QMap<QString, QString> strings;
|
||||
|
||||
// build command
|
||||
QString command = QString("open \"%1\"").arg(executable);
|
||||
if (!arguments.isEmpty()) command += " --args " + arguments;
|
||||
QString command = QString("exec \"%1\"").arg(executable);
|
||||
if (!arguments.isEmpty()) command += " " + arguments;
|
||||
|
||||
strings.clear();
|
||||
strings["COMMAND"] = command;
|
||||
|
|
Loading…
Reference in a new issue