Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Nov 11, 2015
1 parent ae4f954 commit fccc041
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ var cli = new Liftoff({
v8flags: v8flags,
});

var parser = yargs
.usage('\n' + chalk.bold('Usage:') + ' gulp ' +
chalk.blue('[options]') + ' tasks', cliOptions);
var usage =
'\n' + chalk.bold('Usage:') +
' gulp ' + chalk.blue('[options]') + ' tasks';

var parser = yargs.usage(usage, cliOptions);
var opts = parser.argv;

// This is a hold-over until we have a better logging system
Expand Down

0 comments on commit fccc041

Please sign in to comment.