lrbarber commented on issue #895: URL: https://github.com/apache/daffodil-vscode/issues/895#issuecomment-1819327229
@shanedell The way the parameters are being parsed by Windows breaks the command in to 2 pieces at the space character. The initial implementation tried to get around this by encoding the 2 pieces separately but expecting that they would be placed together on the java command line. Unfortunately, this wasn't working due to the parser also breaking the parameter at the equals sign. The double quotes on the windows version forces the parser to take the entirety of the string as one parameter as intended. Linux parser doesn't eliminate these quotation marks, thus corrupting the java command line it's trying to build and forcing us to use separate implementations based upon the operating system. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
