Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Kaput <[email protected]>
  • Loading branch information
mkaput committed Nov 28, 2024
1 parent ac392e2 commit ebc13e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function isExecutable(path: string): Promise<boolean> {
try {
await fs.promises.access(path, fs.constants.X_OK);
return true;
} catch (e) {
} catch {
return false;
}
}

0 comments on commit ebc13e4

Please sign in to comment.