brian-lau / MatlabProcessManager

Matlab class for launching and managing asynchronous processes
BSD 2-Clause "Simplified" License
22 stars 12 forks source link

bug #3

Closed drbenvincent closed 7 years ago

drbenvincent commented 7 years ago

I'm using this in conjunction with MatlabStan. When I call the compile method on the StanModel object, I get this error

Error using processManager/start (line 411)
Looks like command doesn't exist. Check spelling or path?

Error in processManager/set.command (line 215)
            self.start();

Error in processManager (line 178)
         self.command = p.Results.command;

Error in StanModel/compile (line 846)
         p = processManager('id','compile',...

I've been using MatlabProcessManager and MatlabStan happily for ages. I suspect the bug was introduced in the last commit to this repo. Would appreciate any pointers.

brian-lau commented 7 years ago

Sorry bout that. I think I know what the problem is. Just to be sure, can you tell me what OS you are running on?

drbenvincent commented 7 years ago

Thanks. Am running macOS Sierra (10.12.2)

brian-lau commented 7 years ago

I pushed a fix up in v0.5.1. Let me know if this doesn't work.

drbenvincent commented 7 years ago

Yep, working again for me. Thanks for the speedy response.