From 80c733440fbda54d4df7009371b657eca615c77d Mon Sep 17 00:00:00 2001 From: Royi Date: Wed, 26 Jun 2024 18:52:39 +0300 Subject: [PATCH] Fix the Order of Windows Installer Flags (#260) Following the documentation at https://conda.github.io/constructor/cli-options/#windows-installers, the `/S` flag should appear at the end. --- src/Conda.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Conda.jl b/src/Conda.jl index 4652fed..f2957c8 100644 --- a/src/Conda.jl +++ b/src/Conda.jl @@ -304,7 +304,7 @@ https://github.com/JuliaPy/Conda.jl. run(`$installer -b -f -p $PREFIX`) end if Sys.iswindows() - run(Cmd(`$installer /S /NoShortcuts=1 /NoRegistry=1 /AddToPath=0 /RegisterPython=0 /D=$PREFIX`, windows_verbatim=true)) + run(Cmd(`$installer /NoShortcuts=1 /NoRegistry=1 /AddToPath=0 /RegisterPython=0 /S /D=$PREFIX`, windows_verbatim=true)) end write("$PREFIX/condarc-julia.yml", "auto_update_conda: false") end