]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #104350 - SparkyPotato:fix-x-wrapper, r=jyn514
authorMatthias Krüger <matthias.krueger@famsik.de>
Mon, 14 Nov 2022 18:26:18 +0000 (19:26 +0100)
committerGitHub <noreply@github.com>
Mon, 14 Nov 2022 18:26:18 +0000 (19:26 +0100)
Fix x finding Python on Windows

`x` searches through the path for `{dir}/python{2|3}?`, but this fails on Windows because the appropriate path is `{dir}/python.exe`.

This PR adds the expected `.exe` extension on Windows while searching.


Trivial merge