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 c15f4ddea9
commit 66bd77f1c0
+1 -1
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?)