Caching cleanup

pull/310/head
Frostebite 2022-01-02 18:50:08 +00:00
parent d56e72995c
commit 05c0e89f90
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2626,7 +2626,7 @@ class CloudRunnerLogger {
CloudRunnerLogger.log(`STARTING INIT HOOK ${process.env.INIT_HOOK}`);
const child = child_process_1.exec(process.env.INIT_HOOK, (error, stdout, stderr) => {
if (error) {
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${JSON.stringify(error)}`);
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${error}`);
return;
}
if (stderr) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -58,7 +58,7 @@ class CloudRunnerLogger {
CloudRunnerLogger.log(`STARTING INIT HOOK ${process.env.INIT_HOOK}`);
const child = exec(process.env.INIT_HOOK, (error: any, stdout: string, stderr: any) => {
if (error) {
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${JSON.stringify(error)}`);
CloudRunnerLogger.error(`[GCP-LOGGER][ERROR]${error}`);
return;
}
if (stderr) {