We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e0a5ec commit b2e1c16Copy full SHA for b2e1c16
build_tools/np311-windows/miniconda/build.py
@@ -13,6 +13,6 @@ def run(temp_dir: str):
13
install_dir = os.path.join(temp_dir, "install")
14
os.mkdir(install_dir)
15
__np__.run_with_output(downloaded_file, "/InstallationType=JustMe", "/AddToPath=0", "/S", "/RegisterPython=0",
16
- "/NoRegistry=1", "/NoScripts=1", "/NoShortcuts=1", "/D=" + install_dir)
+ "/NoRegistry=1", "/NoScripts=1", "/NoShortcuts=1", "/D=" + os.path.realpath(install_dir))
17
os.rename(os.path.join(install_dir, "_conda.exe"), os.path.join(install_dir, "conda.exe"))
18
__np__.install_build_tool("miniconda", os.path.join(install_dir, "*"))
0 commit comments