fix: build error with new TS version

This commit is contained in:
K3rnelPan1c 2022-10-22 18:23:32 +02:00
parent d2f0c98eae
commit 6f2d701939
No known key found for this signature in database
GPG key ID: 4311D61DF6C90722
4 changed files with 6 additions and 3913 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -55,7 +55,9 @@ export async function findFuseOverlayfsPath(): Promise<string | undefined> {
fuseOverlayfsPath = await io.which("fuse-overlayfs"); fuseOverlayfsPath = await io.which("fuse-overlayfs");
} }
catch (err) { catch (err) {
core.debug(err); if (err instanceof Error) {
core.debug(err.message);
}
} }
return fuseOverlayfsPath; return fuseOverlayfsPath;