We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example configuration which fails on Linux:
options: { failOnError: true }, updateAllPackages: { exec: '/workspace/Some project name (branch 2.10)/updateAllPackages' }
It fails because the 'exec' value is not escaped with quotes here (while the Windows variant is):
if (this.data.exec) { // logic is from node's cp.exec method, adapted to benefit from // streaming io if (process.platform === 'win32') { cmd = 'cmd.exe'; args = ['/s', '/c', '"' + this.data.exec + '"']; spawnOpts.windowsVerbatimArguments = true; } else { cmd = '/bin/sh'; args = ['-c', this.data.exec]; }
Please change args = ['-c', this.data.exec]; to args = ['-c', '"' + this.data.exec + '"']; on row 112.
args = ['-c', this.data.exec];
args = ['-c', '"' + this.data.exec + '"'];
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example configuration which fails on Linux:
It fails because the 'exec' value is not escaped with quotes here (while the Windows variant is):
Please change
args = ['-c', this.data.exec];
toargs = ['-c', '"' + this.data.exec + '"'];
on row 112.The text was updated successfully, but these errors were encountered: