From 39b7b3ea099ad9d91c9963f1dec6a2337b4da850 Mon Sep 17 00:00:00 2001 From: Asher Edwards Date: Sat, 9 May 2026 22:23:27 -0600 Subject: [PATCH] fix: build environments with spaces can now be used (#816) Small little fix that allows build environments with spaces. My space was giving errors of `bash: line 1: cd: too many arguments` --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 9c75e5a2..0b7b2e3c 100644 --- a/tasks.py +++ b/tasks.py @@ -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])