Compare commits

...

3 Commits

Author SHA1 Message Date
nullishamy
bd4d330a0b Revert "ci: test if the build fails"
This reverts commit c62fd904a2.
2024-05-24 20:01:18 +01:00
nullishamy
c62fd904a2 ci: test if the build fails 2024-05-24 19:59:21 +01:00
nullishamy
9056ff2be8 ci: exit with non zero exit code when a build fails 2024-05-24 19:57:29 +01:00

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env python3
import os, re, shutil, subprocess, argparse, glob, logging, zipfile
import os, re, shutil, subprocess, argparse, glob, logging, zipfile, sys
from dataclasses import dataclass
from typing import Any, Literal, List
@@ -654,3 +654,4 @@ try:
main()
except Exception as e:
logger.error("Something went wrong when building the theme:", exc_info=e)
sys.exit(1)