fixing library warning in setup step
parent
0198485884
commit
dd5f9a302b
|
|
@ -662,7 +662,7 @@ class CloudRunnerSystem {
|
|||
const child = child_process_1.exec(command, (error, stdout, stderr) => {
|
||||
if (error) {
|
||||
remote_client_logger_1.RemoteClientLogger.logCliError(`${error.message}`);
|
||||
throw new Error(error.toString());
|
||||
throw error;
|
||||
}
|
||||
if (stderr) {
|
||||
remote_client_logger_1.RemoteClientLogger.logCliDiagnostic(`${stderr.toString()}`);
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -11,7 +11,7 @@ export class CloudRunnerSystem {
|
|||
const child = exec(command, (error, stdout, stderr) => {
|
||||
if (error) {
|
||||
RemoteClientLogger.logCliError(`${error.message}`);
|
||||
throw new Error(error.toString());
|
||||
throw error;
|
||||
}
|
||||
if (stderr) {
|
||||
RemoteClientLogger.logCliDiagnostic(`${stderr.toString()}`);
|
||||
|
|
|
|||
Loading…
Reference in New Issue