Caching cleanup
parent
d56e72995c
commit
05c0e89f90
|
|
@ -2626,7 +2626,7 @@ class CloudRunnerLogger {
|
||||||
CloudRunnerLogger.log(`STARTING INIT HOOK ${process.env.INIT_HOOK}`);
|
CloudRunnerLogger.log(`STARTING INIT HOOK ${process.env.INIT_HOOK}`);
|
||||||
const child = child_process_1.exec(process.env.INIT_HOOK, (error, stdout, stderr) => {
|
const child = child_process_1.exec(process.env.INIT_HOOK, (error, stdout, stderr) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${JSON.stringify(error)}`);
|
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${error}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (stderr) {
|
if (stderr) {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -58,7 +58,7 @@ class CloudRunnerLogger {
|
||||||
CloudRunnerLogger.log(`STARTING INIT HOOK ${process.env.INIT_HOOK}`);
|
CloudRunnerLogger.log(`STARTING INIT HOOK ${process.env.INIT_HOOK}`);
|
||||||
const child = exec(process.env.INIT_HOOK, (error: any, stdout: string, stderr: any) => {
|
const child = exec(process.env.INIT_HOOK, (error: any, stdout: string, stderr: any) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${JSON.stringify(error)}`);
|
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${error}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (stderr) {
|
if (stderr) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue