Browse Source

Avoided a false assertion in ChildProcess

tags/2021-05-28
jules 9 years ago
parent
commit
d6f02c9ba4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      modules/juce_core/native/juce_posix_SharedCode.h

+ 2
- 1
modules/juce_core/native/juce_posix_SharedCode.h View File

@@ -1058,7 +1058,8 @@ public:
// Looks like you're trying to launch a non-existent exe or a folder (perhaps on OSX
// you're trying to launch the .app folder rather than the actual binary inside it?)
jassert (File::getCurrentWorkingDirectory().getChildFile (exe).existsAsFile());
jassert (File::getCurrentWorkingDirectory().getChildFile (exe).existsAsFile()
|| ! exe.containsChar (File::separator));
int pipeHandles[2] = { 0 };


Loading…
Cancel
Save