On Dec 2, 2012, at 02:18 , jonat...@mugginsoft.com wrote: > Thanks to Fritz for pointing out that the error detection was not up to > scratch.
> if (!userScriptsFolderURL || *error) { > [NSException raise:MGSTaskStartException format:@"Bad user scripts > folder URL"]; > } > if (!_unixTask || *error) { > [NSException raise:MGSTaskStartException format:@"Bad user task"]; > > } Except you didn't bring it up to scratch, though Fritz was very explicit about what was needed. The correct versions are: > if (!userScriptsFolderURL) { > [NSException raise:MGSTaskStartException format:@"Bad user scripts > folder URL"]; > } > if (!_unixTask) { > [NSException raise:MGSTaskStartException format:@"Bad user task"]; > > } _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com