Skip to content

Commit

Permalink
Fix #488
Browse files Browse the repository at this point in the history
  • Loading branch information
demarey committed Jun 17, 2020
1 parent a8b29c0 commit 1bbdd6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/PharoLauncher-Core/PhLLaunchImageCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ PhLLaunchImageCommand >> launchImage: aPhLImage [
process := aPhLImage launchWithConfiguration: launchConfig. ]
on: PhLError
do: [ :error | error uiAlert. ^ process ].
(PhLLaunchedImagesWatcher process: process image: aPhLImage) check.
"Waiting for https://github.com/pharo-contributions/OSSubprocess/issues/58 to be fixed
(PhLLaunchedImagesWatcher process: process image: aPhLImage) check."
self class quitOnLaunch
ifTrue: [ self quit ].
^ process
Expand Down
2 changes: 1 addition & 1 deletion src/PharoLauncher-Core/PhLProcessWrapper.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ PhLProcessWrapper >> visitMacOS: aPlatform [
PhLProcessWrapper >> visitUnix: aPlatform [
process := OSSUnixSubprocess new
workingDirectory: workingDirectory;
redirectStderr;
"redirectStderr;" "Waiting for https://github.com/pharo-contributions/OSSubprocess/issues/58 to be fixed"
yourself.
isShellCommand
ifTrue: [ | commandLine |
Expand Down

0 comments on commit 1bbdd6f

Please sign in to comment.