From 273b2cd6462ef8c3baa38997bb13f5fe4f15c892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 10 May 2021 09:15:39 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20docs=20script=20to=20gener?= =?UTF-8?q?ate=20a=20new=20translation=20language=20with=20overrides=20boi?= =?UTF-8?q?lerplate=20(#3202)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/docs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/docs.py b/scripts/docs.py index ec3ad76e6..40569e193 100644 --- a/scripts/docs.py +++ b/scripts/docs.py @@ -106,6 +106,9 @@ def new_lang(lang: str = typer.Argument(..., callback=lang_callback)): en_index_content = en_index_path.read_text(encoding="utf-8") new_index_content = f"{missing_translation_snippet}\n\n{en_index_content}" new_index_path.write_text(new_index_content, encoding="utf-8") + new_overrides_gitignore_path = new_path / "overrides" / ".gitignore" + new_overrides_gitignore_path.parent.mkdir(parents=True, exist_ok=True) + new_overrides_gitignore_path.write_text("") typer.secho(f"Successfully initialized: {new_path}", color=typer.colors.GREEN) update_languages(lang=None)