Fixed: Return true when "open" succeeds under OS X
This commit is contained in:
parent
82e4a6183e
commit
2481119b04
1 changed files with 5 additions and 1 deletions
|
@ -777,8 +777,12 @@ bool launchProgram(const std::string &programName, const std::string &arguments,
|
|||
|
||||
int res = system(command.c_str());
|
||||
|
||||
if (res && log)
|
||||
if (!res) return true;
|
||||
|
||||
if (log)
|
||||
{
|
||||
nlwarning ("LAUNCH: Failed launched '%s' with arg '%s' return code %d", programName.c_str(), arguments.c_str(), res);
|
||||
}
|
||||
#else
|
||||
|
||||
static bool firstLaunchProgram = true;
|
||||
|
|
Loading…
Reference in a new issue