From 6ccf2463db9aefcea1283ae9567cc3cb41a475af Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Wed, 21 Oct 2020 09:32:47 +0200 Subject: [PATCH] deal with uncaught exceptions --- dist/restore/index.js | 3 +++ dist/save/index.js | 3 +++ src/common.ts | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/dist/restore/index.js b/dist/restore/index.js index 9001398..04b4058 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -54465,6 +54465,9 @@ var __asyncValues = (undefined && undefined.__asyncValues) || function (o) { +process.on("uncaughtException", (e) => { + core.info(`[warning] ${e.message}`); +}); const stateKey = "RUST_CACHE_KEY"; const stateHash = "RUST_CACHE_HASH"; const home = external_os_default().homedir(); diff --git a/dist/save/index.js b/dist/save/index.js index 48e4e50..031ce47 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -54465,6 +54465,9 @@ var __asyncValues = (undefined && undefined.__asyncValues) || function (o) { +process.on("uncaughtException", (e) => { + core.info(`[warning] ${e.message}`); +}); const stateKey = "RUST_CACHE_KEY"; const stateHash = "RUST_CACHE_HASH"; const home = external_os_default().homedir(); diff --git a/src/common.ts b/src/common.ts index 5e7cf4c..c887853 100644 --- a/src/common.ts +++ b/src/common.ts @@ -7,6 +7,10 @@ import fs from "fs"; import os from "os"; import path from "path"; +process.on("uncaughtException", (e) => { + core.info(`[warning] ${e.message}`); +}); + export const stateKey = "RUST_CACHE_KEY"; const stateHash = "RUST_CACHE_HASH";