Skip to content
This repository has been archived by the owner on Jul 25, 2021. It is now read-only.

Commit

Permalink
v0.16.3
Browse files Browse the repository at this point in the history
  • Loading branch information
brentlintner committed Jun 13, 2017
1 parent ddaed0c commit 838582d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ var spawn = function (bin, opts) {
cwd: process.cwd(),
path: process.env.PATH
}));
var new_env = extend({}, process.env);
new_env.Path = new_env.PATH = new_path;
var proc = cross_spawn(bin, opts.args, {
env: { PATH: new_path },
env: new_env,
stdio: opts.stdio || [process.stdin, "pipe", "pipe"]
});
proc.stdout.on("data", function (chunk) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vile",
"version": "0.16.2",
"version": "0.16.3",
"description": "A punishing yet easy to use tool for writing insightful code.",
"main": "lib/index.js",
"types": "src/@types/index.d.ts",
Expand Down

0 comments on commit 838582d

Please sign in to comment.