From f390c3692a3997a8ab76a5398d9dec0d6e9d844f Mon Sep 17 00:00:00 2001 From: The Gears of Progress Date: Wed, 11 Feb 2026 10:05:25 -0500 Subject: [PATCH] Fixing sheet download issues --- tools/text_helper/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/text_helper/main.py b/tools/text_helper/main.py index 78fb1bb..5a87ae8 100644 --- a/tools/text_helper/main.py +++ b/tools/text_helper/main.py @@ -26,6 +26,7 @@ FIRST_TRANSLATION_COL_INDEX = 10 BASE_DIR = Path(__file__).resolve().parent BUILD_DIR = BASE_DIR / "build" GEN_DIR = BASE_DIR.parent.parent / "build" / "generated" +BUILD_DIR.mkdir(parents=True, exist_ok=True) GEN_DIR.mkdir(parents=True, exist_ok=True) TRANSLATED_H_PATH = GEN_DIR / "translated_text.h" TRANSLATED_CPP_PATH = GEN_DIR / "translated_text.cpp"