about summary refs log tree commit diff
path: root/x.ps1
AgeCommit message (Collapse)AuthorLines
2022-12-28Powershell: Create a `Start-Process` wrapperChris Denton-5/+8
2022-12-28Powershell: Use `WaitForExit` instead of `-Wait`Chris Denton-1/+2
2022-10-31Add better python discoveryAlbert Larsan-1/+12
`x.ps1` and `x` will now search for python executables like `python3.9` and `python3.10.exe`
2022-08-12Use an extensionless `x` script for non-WindowsJosh Stone-1/+1
2022-08-08Add `x.sh` and `x.ps1` shell scriptsJoshua Nelson-0/+28
This is a more ambitious version of https://github.com/rust-lang/rust/pull/98716. It still changes the shebang back to python3, for compatibility with non-Unix systems, but also adds alternative entrypoints for systems without `python3` installed. These scripts will be necessary for the rust entrypoint (#94829), so I see little downside in adding them early.