Преглед на файлове

Bugfix: Some Pages are not Generated: (#1278)

Fix issue with some pages not being generated
Elijah Ahianyo преди 1 година
родител
ревизия
272f0eb003
променени са 1 файла, в които са добавени 1 реда и са изтрити 2 реда
  1. 1 2
      reflex/utils/path_ops.py

+ 1 - 2
reflex/utils/path_ops.py

@@ -71,8 +71,7 @@ def mkdir(path: str):
     Args:
         path: The path to the directory.
     """
-    if not os.path.exists(path):
-        os.makedirs(path)
+    os.makedirs(path, exist_ok=True)
 
 
 def ln(src: str, dest: str, overwrite: bool = False) -> bool: