Fixed startup crash codes (for Docker)

This commit is contained in:
DJj123dj
2025-03-12 22:12:51 +01:00
parent 177dee7468
commit e7ad3dd50b
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ let tempErrors: string[] = []
const tempError = () => {
if (tempErrors.length > 0){
console.log("\n\n==============================\n[OPEN TICKET ERROR]: "+tempErrors.join("\n[OPEN TICKET ERROR]: ")+"\n==============================\n\n")
process.exit(0)
process.exit(1)
}
tempErrors = []
}