Hi Sean,

On 14 November 2017 at 19:06, Sean P. DeNigris <s...@clipperadams.com> wrote:
> Alistair Grant wrote
>> I've committed some fixes to the development branch:
>
> Thanks!
>
> I tried your example, but apparently the OSXProcess class, which is
> referenced in openChromeWith: is missing. Also, no class in the image seems
> to define #createProcess:, which is sent to OSXProcess there

This looks like you are using an old (cached?) version.  Maybe try
"Pull incoming commits" from Iceberg?

You should have (minus the broken formatting from pasting):


OSXChromePlatform>>openChromeWith: arguments

| executableLocation process |
executableLocation := self defaultExecutableLocation copyReplaceAll: '
' with: '\ '.
process := AKGOSProcess command: executableLocation arguments: arguments.
process run.
^process


HTH,
Alistair

Reply via email to