3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2026-05-14 06:55:28 +00:00

Fix TS 6.0 compatibility issues

This commit is contained in:
Kleshzz 2026-05-09 10:57:27 +03:00
parent 22c9bd4407
commit 82669f7b8f
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ import { cleanTargetDir } from "./cleanup";
import { CacheConfig } from "./config";
import { getCacheProvider, reportError } from "./utils";
process.on("uncaughtException", (e) => {
process.on("uncaughtException", (e: any) => {
core.error(e.message);
if (e.stack) {
core.error(e.stack);

View file

@ -5,7 +5,7 @@ import { cleanBin, cleanGit, cleanRegistry, cleanTargetDir } from "./cleanup";
import { CacheConfig, isCacheUpToDate } from "./config";
import { getCacheProvider, reportError } from "./utils";
process.on("uncaughtException", (e) => {
process.on("uncaughtException", (e: any) => {
core.error(e.message);
if (e.stack) {
core.error(e.stack);