Skip to content

Commit

Permalink
Install correct 'tmp' dependency when running pbts without dev depend…
Browse files Browse the repository at this point in the history
…encies installed, fixes #612
  • Loading branch information
dcodeIO committed Jan 3, 2017
1 parent a6cb560 commit 64f95f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/pbts.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var child_process = require("child_process");
var minimist = util.require("minimist", pkg.devDependencies.minimist),
chalk = util.require("chalk", pkg.devDependencies.chalk),
glob = util.require("glob", pkg.devDependencies.glob),
tmp = util.require("tmp", pkg.devDependencies.glob);
tmp = util.require("tmp", pkg.devDependencies.tmp);

var jsdoc = util.require("jsdoc/package.json", pkg.devDependencies.jsdoc);

Expand Down

2 comments on commit 64f95f9

@jeffgrossmann
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. I'm sure it's nice to have an easy fix now and then.

@dcodeIO
Copy link
Member Author

@dcodeIO dcodeIO commented on 64f95f9 Jan 3, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, thanks!

Please sign in to comment.