Skip to content

Commit

Permalink
try commenting out PATH modification
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Dec 30, 2020
1 parent c849891 commit 19f36f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18024,7 +18024,8 @@ function setPathVariables(options) {
const condaBin = path.join(conda.condaBasePath(options), "condabin");
const condaPath = conda.condaBasePath(options);
core.info(`Add "${condaBin}" to PATH`);
core.addPath(condaBin);
// TODO: remove if it doesn't break anything...
// core.addPath(condaBin);
if (!options.useBundled) {
core.info(`Set 'CONDA="${condaPath}"'`);
core.exportVariable("CONDA", condaPath);
Expand Down
3 changes: 2 additions & 1 deletion src/outputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export async function setPathVariables(
const condaBin: string = path.join(conda.condaBasePath(options), "condabin");
const condaPath: string = conda.condaBasePath(options);
core.info(`Add "${condaBin}" to PATH`);
core.addPath(condaBin);
// TODO: remove if it doesn't break anything...
// core.addPath(condaBin);
if (!options.useBundled) {
core.info(`Set 'CONDA="${condaPath}"'`);
core.exportVariable("CONDA", condaPath);
Expand Down

0 comments on commit 19f36f1

Please sign in to comment.