Closed c33s closed 8 years ago
having set the global stopOnFail() to false should be overrideable
stopOnFail()
false
/** * RoboFile constructor. */ public function __construct() { $this->stopOnFail(true); }
the stopOnFail(false) in the taskExecStack() doesn't prevent the stop.
stopOnFail(false)
taskExecStack()
$this->taskExecStack() ->stopOnFail(false) ->exec('my failing command') ->run();
I guess you wanted to post this at another repo (https://github.com/Codegyre/Robo) and not here.
sorry, had to many github tabs open :)
having set the global
stopOnFail()
tofalse
should be overrideablethe
stopOnFail(false)
in thetaskExecStack()
doesn't prevent the stop.