From e28cb556c0cc37ca185bbc0863319bb5e478a5e2 Mon Sep 17 00:00:00 2001 From: Mitch Gaffigan Date: Sat, 31 Jan 2026 12:46:56 -0600 Subject: [PATCH] Fix syntax error in oieserver.ps1 Signed-off-by: Mitch Gaffigan --- server/basedir-includes/oieserver.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/basedir-includes/oieserver.ps1 b/server/basedir-includes/oieserver.ps1 index 79ff35350..96be9666f 100644 --- a/server/basedir-includes/oieserver.ps1 +++ b/server/basedir-includes/oieserver.ps1 @@ -190,10 +190,10 @@ function Parse-VmOptions([string] $File) { $script:Classpath.Add($matches[1].Trim()) } elseif ($line -match '^-classpath/a\s+(.+)') { - $script:Classpath.Add($($matches[1].Trim()) + $script:Classpath.Add($matches[1].Trim()) } elseif ($line -match '^-classpath/p\s+(.+)') { - $script:Classpath.Insert(0, $($matches[1].Trim()) + $script:Classpath.Insert(0, $matches[1].Trim()) } elseif ($line -match '^-java-cmd\s+(.+)') { # Store the path and the file it was found in. Validation is deferred.