Skip to content

Commit fa6bdf9

Browse files
committed
Update with npm run build
1 parent d42f8b8 commit fa6bdf9

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

Diff for: dist/setup/index.js

+6-8
Original file line numberDiff line numberDiff line change
@@ -47248,14 +47248,12 @@ const utils = __importStar(__nccwpck_require__(1314));
4724847248
* Provide current location of miniconda or location where it will be installed
4724947249
*/
4725047250
function condaBasePath(options) {
47251-
let condaPath = constants.MINICONDA_DIR_PATH;
47252-
if (!options.useBundled) {
47253-
if (constants.IS_MAC) {
47254-
condaPath = "/Users/runner/miniconda3";
47255-
}
47256-
else {
47257-
condaPath += "3";
47258-
}
47251+
let condaPath;
47252+
if (options.useBundled) {
47253+
condaPath = constants.MINICONDA_DIR_PATH;
47254+
}
47255+
else {
47256+
condaPath = path.join(os.homedir(), "miniconda3");
4725947257
}
4726047258
return condaPath;
4726147259
}

0 commit comments

Comments
 (0)