We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43bcd32 commit e28cb55Copy full SHA for e28cb55
server/basedir-includes/oieserver.ps1
@@ -190,10 +190,10 @@ function Parse-VmOptions([string] $File) {
190
$script:Classpath.Add($matches[1].Trim())
191
}
192
elseif ($line -match '^-classpath/a\s+(.+)') {
193
- $script:Classpath.Add($($matches[1].Trim())
+ $script:Classpath.Add($matches[1].Trim())
194
195
elseif ($line -match '^-classpath/p\s+(.+)') {
196
- $script:Classpath.Insert(0, $($matches[1].Trim())
+ $script:Classpath.Insert(0, $matches[1].Trim())
197
198
elseif ($line -match '^-java-cmd\s+(.+)') {
199
# Store the path and the file it was found in. Validation is deferred.
0 commit comments