Is there a way to disable a command? I tried to look in the src code and I think this was not handle. I was thinking of this for example
onBuildExit: [
{
run: 'php echo test',
disable: (ENV != test)
},
{
...
}
]
not only for onBuildExit but also on other builds.
Reactions are currently unavailable
Is there a way to disable a command? I tried to look in the src code and I think this was not handle. I was thinking of this for example
onBuildExit: [ { run: 'php echo test', disable: (ENV != test) }, { ... } ]not only for onBuildExit but also on other builds.