OSSubprocess icon indicating copy to clipboard operation
OSSubprocess copied to clipboard

OSSUnixSubProcess never terminates on macOS 10.15.1

Open hellerve opened this issue 5 years ago • 0 comments

When running any sort of command, including the first example

OSSUnixSubprocess new
	command: '/bin/ls';
	arguments: #('-la' '/Users');
	redirectStdout;
	runAndWaitOnExitDo: [ :process :outString  |
		outString inspect
	]

the process is never marked as finished and thus never completes.

Let me know if you need any sort of information on the state of the process when it hangs.

Cheers

hellerve avatar Dec 16 '19 10:12 hellerve