getGuaka/Process

error: module 'Process' has no member named 'exec'

Closed this issue · 2 comments

Whenever I import and try to use 'Process.exec("blah blah")' with Guaka I'm given:
error: module 'Process' has no member named 'exec'

All other "Batteries included" packages work fine.

The problem is that enum Process { is not public. I've fixed this by going to the source as follows:

public enum Process {

I submitted a pr #2 I'll merge it as soon as the test passes!
Thanks for raising it!!