Skip to content

Commit

Permalink
anaconda3: Fix setup.exe not found error (#10835)
Browse files Browse the repository at this point in the history
  • Loading branch information
silicer authored Mar 25, 2023
1 parent 14249cd commit fa862c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bucket/anaconda3.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"Move-Item \"$dir\\setup.exe\" \"$dir\\..\\setup.exe\" | Out-Null",
"Write-Host 'Installing Anaconda 3. This can take up to 30 minutes on an HDD.' -ForegroundColor Magenta",
"# Using Start-Process as a workaround because the installer will not work properly when args are quoted (e.g. \"`\"/S`\"\")",
"Start-Process \"$dir\\setup.exe\" -ArgumentList @('/S', '/InstallationType=JustMe', '/RegisterPython=1', '/AddToPath=0', '/NoRegistry=1', \"/D=$dir\") -Wait | Out-Null"
"Start-Process \"$dir\\..\\setup.exe\" -ArgumentList @('/S', '/InstallationType=JustMe', '/RegisterPython=1', '/AddToPath=0', '/NoRegistry=1', \"/D=$dir\") -Wait | Out-Null"
]
},
"post_install": "Remove-Item \"$dir\\..\\setup.exe\" -Force | Out-Null",
Expand Down

0 comments on commit fa862c4

Please sign in to comment.