Skip to content

Commit e28cb55

Browse files
committed
Fix syntax error in oieserver.ps1
Signed-off-by: Mitch Gaffigan <mitch.gaffigan@comcast.net>
1 parent 43bcd32 commit e28cb55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/basedir-includes/oieserver.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,10 @@ function Parse-VmOptions([string] $File) {
190190
$script:Classpath.Add($matches[1].Trim())
191191
}
192192
elseif ($line -match '^-classpath/a\s+(.+)') {
193-
$script:Classpath.Add($($matches[1].Trim())
193+
$script:Classpath.Add($matches[1].Trim())
194194
}
195195
elseif ($line -match '^-classpath/p\s+(.+)') {
196-
$script:Classpath.Insert(0, $($matches[1].Trim())
196+
$script:Classpath.Insert(0, $matches[1].Trim())
197197
}
198198
elseif ($line -match '^-java-cmd\s+(.+)') {
199199
# Store the path and the file it was found in. Validation is deferred.

0 commit comments

Comments
 (0)