symfony2admingenerator / AdmingeneratorGeneratorBundle

(old-legacy) Admingenerator for Symfony2, parse generator.yml files to build classes
http://symfony2admingenerator.org/
MIT License
360 stars 125 forks source link

Global stopOnFail(true) should be overrideable with local stopOnFail #839

Closed c33s closed 8 years ago

c33s commented 8 years ago

having set the global stopOnFail() to false should be overrideable

/**
 * RoboFile constructor.
 */
public function __construct()
{
    $this->stopOnFail(true);
}

the stopOnFail(false) in the taskExecStack() doesn't prevent the stop.

$this->taskExecStack()
    ->stopOnFail(false)
    ->exec('my failing command')
    ->run();
bobvandevijver commented 8 years ago

I guess you wanted to post this at another repo (https://github.com/Codegyre/Robo) and not here.

c33s commented 8 years ago

sorry, had to many github tabs open :)