Skip to content

Commit

Permalink
Hardcode path to pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
dlukes committed May 18, 2018
1 parent e26da1a commit 5f2aa09
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export class EnvironmentVariablesProvider implements IEnvironmentVariablesProvid
this.envVarsService.mergeVariables(this.process.env, mergedVars!);
const pathVariable = this.isWidows ? WINDOWS_PATH_VARIABLE_NAME : NON_WINDOWS_PATH_VARIABLE_NAME;
this.envVarsService.appendPath(mergedVars!, this.process.env[pathVariable]);
this.envVarsService.appendPath(mergedVars!, '/home/david/.local/bin');
this.envVarsService.appendPythonPath(mergedVars!, this.process.env.PYTHONPATH);
this.cache.set(settings.envFile, mergedVars);
}
Expand Down

0 comments on commit 5f2aa09

Please sign in to comment.