Skip to content

Commit 814c744

Browse files
authored
Unrolled build for rust-lang#117069
Rollup merge of rust-lang#117069 - xobs:x.ps1-remove-windows-store-check, r=albertlarsan68 x.ps1: remove the check for Python from Windows Store When installing Python from the Windows Store, a copy of `python.exe` is installed inder the Microsoft directory in the user's local AppData directory. Currently, `x.ps1` checks for this file, because by default running `python.exe` opens a link to the Microsoft Store rather than running Python. Once the user installs Python, however, this contains a valid interpreter. Unfortuantely, `x.ps1` can't tell the difference between a legitimate Python install and the stub. Remove the check, as it makes it impossible to use the official version from Microsoft once it has been installed. This resolves rust-lang#117067
2 parents aec4741 + 1f9f041 commit 814c744

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

x.ps1

-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ foreach ($arg in $args) {
1717

1818
function Get-Application($app) {
1919
$cmd = Get-Command $app -ErrorAction SilentlyContinue -CommandType Application | Select-Object -First 1
20-
if ($cmd.source -match '.*AppData\\Local\\Microsoft\\WindowsApps\\.*exe') {
21-
# Windows for some reason puts a `python3.exe` executable in PATH that just opens the windows store.
22-
# Ignore it.
23-
return $false
24-
}
2520
return $cmd
2621
}
2722

0 commit comments

Comments
 (0)