diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-28 22:39:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 22:39:25 +0200 |
commit | 8cb51a642e7c34a73e7ed877ab46c041521205e5 (patch) | |
tree | 1b95d38264a9677a9cb25b04a256cc636d4d9bca | |
parent | 485d1a50add509b72a768ef93d92ce649604f333 (diff) | |
parent | 73c11ab31ade9acc894f46e936477e98e1b5f3e3 (diff) |
Merge pull request #63586 from akien-mga/editor-paths-create-export_templates
-rw-r--r-- | editor/editor_paths.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_paths.cpp b/editor/editor_paths.cpp index a5c2fe093c..977af3cfae 100644 --- a/editor/editor_paths.cpp +++ b/editor/editor_paths.cpp @@ -153,8 +153,8 @@ EditorPaths::EditorPaths() { } } - if (!dir->dir_exists("templates")) { - dir->make_dir("templates"); + if (!dir->dir_exists("export_templates")) { + dir->make_dir("export_templates"); } } |