Update to latest typescript version (#274)
This commit is contained in:
@@ -748,9 +748,7 @@ describe('@actions/exec', () => {
|
||||
const exitCode = await exec.exec(`"${cmdPath}"`, args, options)
|
||||
expect(exitCode).toBe(0)
|
||||
expect(outStream.getContents().split(os.EOL)[0]).toBe(
|
||||
`[command]${
|
||||
process.env.ComSpec
|
||||
} /D /S /C ""${cmdPath}" "my arg 1" "my arg 2""`
|
||||
`[command]${process.env.ComSpec} /D /S /C ""${cmdPath}" "my arg 1" "my arg 2""`
|
||||
)
|
||||
expect(output.trim()).toBe(
|
||||
'args[0]: "<quote>my arg 1<quote>"\r\n' +
|
||||
@@ -780,9 +778,7 @@ describe('@actions/exec', () => {
|
||||
const exitCode = await exec.exec(`${cmd}`, args, options)
|
||||
expect(exitCode).toBe(0)
|
||||
expect(outStream.getContents().split(os.EOL)[0]).toBe(
|
||||
`[command]${
|
||||
process.env.ComSpec
|
||||
} /D /S /C "${cmdPath} "my arg 1" "my arg 2""`
|
||||
`[command]${process.env.ComSpec} /D /S /C "${cmdPath} "my arg 1" "my arg 2""`
|
||||
)
|
||||
expect(output.trim()).toBe(
|
||||
'args[0]: "<quote>my arg 1<quote>"\r\n' +
|
||||
|
||||
@@ -639,23 +639,15 @@ class ExecState extends events.EventEmitter {
|
||||
if (this.processExited) {
|
||||
if (this.processError) {
|
||||
error = new Error(
|
||||
`There was an error when attempting to execute the process '${
|
||||
this.toolPath
|
||||
}'. This may indicate the process failed to start. Error: ${
|
||||
this.processError
|
||||
}`
|
||||
`There was an error when attempting to execute the process '${this.toolPath}'. This may indicate the process failed to start. Error: ${this.processError}`
|
||||
)
|
||||
} else if (this.processExitCode !== 0 && !this.options.ignoreReturnCode) {
|
||||
error = new Error(
|
||||
`The process '${this.toolPath}' failed with exit code ${
|
||||
this.processExitCode
|
||||
}`
|
||||
`The process '${this.toolPath}' failed with exit code ${this.processExitCode}`
|
||||
)
|
||||
} else if (this.processStderr && this.options.failOnStdErr) {
|
||||
error = new Error(
|
||||
`The process '${
|
||||
this.toolPath
|
||||
}' failed because one or more lines were written to the STDERR stream`
|
||||
`The process '${this.toolPath}' failed because one or more lines were written to the STDERR stream`
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user