2
0
mirror of https://github.com/inventree/inventree-app.git synced 2026-06-10 08:27:15 +00:00

Fix tasks.py (#824)

- Broken invoke on windows
This commit is contained in:
Oliver
2026-05-27 19:59:17 +10:00
committed by GitHub
parent 9d28ae92d7
commit 8077c16b6a
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ def translate(c):
l10_dir = os.path.abspath(l10_dir)
python = "python3" if sys.platform.lower() == "darwin" else "python"
c.run(f"cd '{l10_dir}' && {python} collect_translations.py")
c.run(f'cd "{l10_dir}" && {python} collect_translations.py')
@task(pre=[clean, update, translate])