Skip to content

Commit

Permalink
Use partial path for gettext
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j committed Dec 17, 2024
1 parent 118d617 commit b032b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compile_translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def main() -> None:

if po_path.exists():
try:
subprocess.run(["/usr/bin/msgfmt", "-o", mo_path, po_path], check=True)
subprocess.run(["msgfmt", "-o", mo_path, po_path], check=True)
except Exception:
logging.exception(f"Failed to compile translations for {lang_file.name}")
compile_failure = True
Expand Down

0 comments on commit b032b2b

Please sign in to comment.