Don't print "x.ps1"

This is left over from adding `Get-Command -syntax`; it's not helpful.
This commit is contained in:
jyn 2023-06-24 13:16:39 -05:00
parent fa7e965bf0
commit 664ffa419e

2
x.ps1
View file

@ -5,7 +5,7 @@
$ErrorActionPreference = "Stop"
# syntax check
Get-Command -syntax ${PSCommandPath}
Get-Command -syntax ${PSCommandPath} >$null
$xpy = Join-Path $PSScriptRoot x.py
# Start-Process for some reason splits arguments on spaces. (Isn't powershell supposed to be simpler than bash?)