2022-07-31 19:02:31 +00:00
|
|
|
#!/usr/bin/env pwsh
|
|
|
|
|
2022-08-12 22:39:26 +00:00
|
|
|
# See ./x for why these scripts exist.
|
2022-07-31 19:02:31 +00:00
|
|
|
|
2023-05-03 17:32:39 +00:00
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
|
|
|
|
# syntax check
|
2023-06-24 18:16:39 +00:00
|
|
|
Get-Command -syntax ${PSCommandPath} >$null
|
2023-05-03 17:32:39 +00:00
|
|
|
|
2022-07-31 19:02:31 +00:00
|
|
|
$xpy = Join-Path $PSScriptRoot x.py
|
2023-12-09 14:43:27 +00:00
|
|
|
$xpy_args = @($xpy) + $args
|
2022-07-31 19:02:31 +00:00
|
|
|
|
2022-10-13 08:20:39 +00:00
|
|
|
function Get-Application($app) {
|
2023-06-24 18:09:48 +00:00
|
|
|
$cmd = Get-Command $app -ErrorAction SilentlyContinue -CommandType Application | Select-Object -First 1
|
|
|
|
return $cmd
|
2022-10-13 08:20:39 +00:00
|
|
|
}
|
|
|
|
|
2022-12-28 19:41:42 +00:00
|
|
|
function Invoke-Application($application, $arguments) {
|
2023-12-09 14:43:27 +00:00
|
|
|
& $application $arguments
|
|
|
|
Exit $LASTEXITCODE
|
2022-12-28 19:41:42 +00:00
|
|
|
}
|
|
|
|
|
2022-07-31 19:02:31 +00:00
|
|
|
foreach ($python in "py", "python3", "python", "python2") {
|
|
|
|
# NOTE: this only tests that the command exists in PATH, not that it's actually
|
|
|
|
# executable. The latter is not possible in a portable way, see
|
|
|
|
# https://github.com/PowerShell/PowerShell/issues/12625.
|
2022-10-13 08:20:39 +00:00
|
|
|
if (Get-Application $python) {
|
2022-07-31 19:02:31 +00:00
|
|
|
if ($python -eq "py") {
|
|
|
|
# Use python3, not python2
|
|
|
|
$xpy_args = @("-3") + $xpy_args
|
|
|
|
}
|
2022-12-28 19:41:42 +00:00
|
|
|
Invoke-Application $python $xpy_args
|
2022-07-31 19:02:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 08:20:39 +00:00
|
|
|
$found = (Get-Application "python*" | Where-Object {$_.name -match '^python[2-3]\.[0-9]+(\.exe)?$'})
|
|
|
|
if (($null -ne $found) -and ($found.Length -ge 1)) {
|
|
|
|
$python = $found[0]
|
2022-12-28 19:41:42 +00:00
|
|
|
Invoke-Application $python $xpy_args
|
2022-10-13 08:20:39 +00:00
|
|
|
}
|
|
|
|
|
2023-06-24 18:09:48 +00:00
|
|
|
$msg = "${PSCommandPath}: error: did not find python installed`n"
|
|
|
|
$msg += "help: consider installing it from https://www.python.org/downloads/"
|
|
|
|
Write-Error $msg -Category NotInstalled
|
2022-07-31 19:02:31 +00:00
|
|
|
Exit 1
|