Re-add the error printing

This commit is contained in:
Oliver 2025-11-18 23:28:02 -07:00
parent 213996ab0a
commit 5c1985c4ab

View file

@ -42,7 +42,8 @@ async function main() {
await addReleaseAsset(release.data.id, `release.zip`); await addReleaseAsset(release.data.id, `release.zip`);
await addReleaseAsset(release.data.id, `system.json`); await addReleaseAsset(release.data.id, `system.json`);
} catch (e) { } catch (e) {
console.error(`Failed to add assets to the release with message:`, e.data.message); console.error(`Failed to add assets to the release`);
console.error(e)
process.exit(1); process.exit(1);
}; };