Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/development'
Browse files Browse the repository at this point in the history
  • Loading branch information
bdw429s committed Jul 15, 2017
2 parents 1987cfb + c478246 commit e477e09
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ component {
taskArgs.delete( 'target' );
}

// Fix for negated flags like --no:verbose
if( arguments.keyExists( 'no' ) && isStruct( arguments.no ) ) {
arguments.no.each( function( k, v ) {
if( isBoolean( v ) ) {
taskArgs[ k ] = false;
}
} );
}

// Run the task!
// We're printing the output here so we can capture it and pipe or redirect the output from "task run"
print.text(
Expand Down

0 comments on commit e477e09

Please sign in to comment.