Skip to content

Commit

Permalink
Merge pull request #34 from Tom910/master
Browse files Browse the repository at this point in the history
Fix errors to OS Windows
  • Loading branch information
okonet committed Aug 2, 2016
2 parents 428099a + 39704a9 commit 2a326d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"dependencies": {
"app-root-path": "^1.2.1",
"batchflow": "^0.4.0",
"cross-spawn": "^4.0.0",
"minimatch": "^3.0.0",
"npm-which": "^2.0.0",
"object-assign": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/runScript.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var findBin = require('./findBin')
var spawn = require('child_process').spawn
var spawn = require('cross-spawn')
var batch = require('batchflow')

module.exports = function runScript (linters, paths, config, cb) {
Expand Down

0 comments on commit 2a326d3

Please sign in to comment.