Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnn committed Jul 13, 2016
1 parent cdd5f3d commit c4c5ce5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions cli.js
Expand Up @@ -2,6 +2,7 @@
'use strict';
var spawn = require('child_process').spawn;
var jpegtran = require('./');

var input = process.argv.slice(2);

spawn(jpegtran, input, {stdio: 'inherit'})
Expand Down
1 change: 1 addition & 0 deletions lib/index.js
Expand Up @@ -2,6 +2,7 @@
var path = require('path');
var BinWrapper = require('bin-wrapper');
var pkg = require('../package.json');

var url = 'https://raw.github.com/imagemin/jpegtran-bin/v' + pkg.version + '/vendor/';

module.exports = new BinWrapper()
Expand Down
1 change: 1 addition & 0 deletions lib/install.js
Expand Up @@ -3,6 +3,7 @@ var path = require('path');
var BinBuild = require('bin-build');
var log = require('logalot');
var bin = require('./');

var args = [
'-copy', 'none',
'-optimize',
Expand Down
1 change: 1 addition & 0 deletions test/test.js
Expand Up @@ -9,6 +9,7 @@ var binCheck = require('bin-check');
var compareSize = require('compare-size');
var mkdirp = require('mkdirp');
var rimraf = require('rimraf');

var tmp = path.join(__dirname, 'tmp');

beforeEach(function () {
Expand Down

0 comments on commit c4c5ce5

Please sign in to comment.