bug fixes

This commit is contained in:
Tickbase
2025-05-18 01:33:23 +02:00
parent 3c26dd5eb9
commit 38bd9b4f8f

View File

@@ -188,7 +188,7 @@ function triggerWorkflow(versionType, releaseNotes, isDryRun) {
} }
// Main function // Main function
function main() { async function main() {
console.log('=== CreamLinux Release Script ===\n') console.log('=== CreamLinux Release Script ===\n')
const { versionType, releaseNotes, options } = parseArguments() const { versionType, releaseNotes, options } = parseArguments()
@@ -249,4 +249,7 @@ function main() {
} }
} }
main() main().catch((err) => {
console.error(err)
process.exit(1)
})