Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dbast committed Feb 27, 2024
1 parent 82cbdc0 commit f24fa9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48933,7 +48933,7 @@ function downloadMiniconda(pythonMajorVersion, inputs) {
return yield base.ensureLocalInstaller({
url: constants.MINICONDA_BASE_URL + minicondaInstallerName,
tool: `Miniconda${pythonMajorVersion}`,
version: inputs.minicondaVersion,
version: minicondaVersion,
arch: arch,
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/installer/download-miniconda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export async function downloadMiniconda(
return await base.ensureLocalInstaller({
url: constants.MINICONDA_BASE_URL + minicondaInstallerName,
tool: `Miniconda${pythonMajorVersion}`,
version: inputs.minicondaVersion,
version: minicondaVersion,
arch: arch,
});
}
Expand Down

0 comments on commit f24fa9c

Please sign in to comment.