Skip to content

Commit

Permalink
Fix incorrect property access (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
BendingBender authored and sindresorhus committed Apr 24, 2019
1 parent 2cc1d02 commit 96c8e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module.exports = (files, options) => {
const result = make(files, options);
const stdio = result.isTerminalEditor ? 'inherit' : 'ignore';

const subProcess = childProcess.spawn(result.bin, result.arguments, {
const subProcess = childProcess.spawn(result.binary, result.arguments, {
detached: true,
stdio
});
Expand Down

0 comments on commit 96c8e1f

Please sign in to comment.