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) => {
|
const child = child_process_1.exec(command, (error, stdout, stderr) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
remote_client_logger_1.RemoteClientLogger.logCliError(`${error.message}`);
|
remote_client_logger_1.RemoteClientLogger.logCliError(`${error.message}`);
|
||||||
throw new Error(error.toString());
|
throw error;
|
||||||
}
|
}
|
||||||
if (stderr) {
|
if (stderr) {
|
||||||
remote_client_logger_1.RemoteClientLogger.logCliDiagnostic(`${stderr.toString()}`);
|
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) => {
|
const child = exec(command, (error, stdout, stderr) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
RemoteClientLogger.logCliError(`${error.message}`);
|
RemoteClientLogger.logCliError(`${error.message}`);
|
||||||
throw new Error(error.toString());
|
throw error;
|
||||||
}
|
}
|
||||||
if (stderr) {
|
if (stderr) {
|
||||||
RemoteClientLogger.logCliDiagnostic(`${stderr.toString()}`);
|
RemoteClientLogger.logCliDiagnostic(`${stderr.toString()}`);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue