Compare commits

..

2 Commits

Author SHA1 Message Date
frichtarik
86de519622
Merge d4f4260e2e into 966dfad385 2024-02-15 12:25:24 +00:00
Filip Richtarik
d4f4260e2e Update package-lock.json 2024-02-15 13:25:08 +01:00
3 changed files with 2 additions and 3 deletions

2
.nvmrc
View File

@ -1 +1 @@
20.11.0 20.10.0

View File

@ -15,7 +15,7 @@ export default function getURL(
}; };
const ext = (os: string): string => { const ext = (os: string): string => {
if (os === 'windows') { if (os === 'Windows') {
return 'zip'; return 'zip';
} else { } else {
return 'tar.gz'; return 'tar.gz';

View File

@ -5,7 +5,6 @@ import * as main from './main';
try { try {
await main.run(); await main.run();
} catch (e) { } catch (e) {
// eslint-ignore-next-line
core.setFailed(`Action failed with error ${e.message}`); core.setFailed(`Action failed with error ${e.message}`);
} }
})(); })();