From 664ffa419eb4793d2c6e161d6f098b0104550ca2 Mon Sep 17 00:00:00 2001 From: jyn Date: Sat, 24 Jun 2023 13:16:39 -0500 Subject: [PATCH] Don't print "x.ps1" This is left over from adding `Get-Command -syntax`; it's not helpful. --- x.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x.ps1 b/x.ps1 index b036653e5b4..55f99901645 100755 --- a/x.ps1 +++ b/x.ps1 @@ -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?)