From a9a0fa91d0f838e43b6b6f8208368174225c82e1 Mon Sep 17 00:00:00 2001 From: Ebe66 <88671974+Ebe66@users.noreply.github.com> Date: Thu, 24 Apr 2025 00:22:29 +0200 Subject: [PATCH] The tooling_win dir for Osmosis was not created during the first run resulting in a runtime error on windows --- wahoomc/setup_functions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wahoomc/setup_functions.py b/wahoomc/setup_functions.py index ad735ed7..d135b391 100644 --- a/wahoomc/setup_functions.py +++ b/wahoomc/setup_functions.py @@ -39,6 +39,7 @@ def initialize_work_directories(): os.makedirs(USER_MAPS_DIR, exist_ok=True) os.makedirs(USER_OUTPUT_DIR, exist_ok=True) os.makedirs(USER_CONFIG_DIR, exist_ok=True) + os.makedirs(USER_TOOLING_WIN_DIR, exist_ok=True) def adjustments_due_to_breaking_changes():