From 605b14f1699897c646bb8757fa15948f22ecd044 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sun, 26 Oct 2025 15:58:27 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Code=20cleanup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- windows/wp-bootstrap.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/wp-bootstrap.ps1 b/windows/wp-bootstrap.ps1 index 5cfc8ff..fef67ce 100644 --- a/windows/wp-bootstrap.ps1 +++ b/windows/wp-bootstrap.ps1 @@ -61,9 +61,9 @@ function RandPass(){ } # Resolve script folder + absolute phar -$ScriptRoot = if ($PSScriptRoot) { $PSScriptRoot } else { Split-Path -Parent $MyInvocation.MyCommand.Definition } +$ScriptRoot = if ($PSScriptRoot) { $PSScriptRoot } else { Split-Path -Parent $MyInvocation.MyCommand.Definition } -$PharFullPath= Join-Path $ScriptRoot 'wp-cli.phar' +$PharFullPath = Join-Path $ScriptRoot 'wp-cli.phar' if (!(Test-Path $PharFullPath)) { throw "wp-cli.phar not found at: $PharFullPath" }