Bikatr7 commited on
Commit
e36b105
1 Parent(s): 87c3616

attempted fix for runtime error on build during secrets directory creation

Browse files
Files changed (1) hide show
  1. modules/common/file_ensurer.py +1 -1
modules/common/file_ensurer.py CHANGED
@@ -278,7 +278,7 @@ class FileEnsurer():
278
  """
279
 
280
  if(os.path.isdir(directory_path) == False):
281
- os.mkdir(directory_path)
282
  Logger.log_action(directory_path + " created due to lack of the folder")
283
 
284
  ##--------------------start-of-standard_create_file()------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 
278
  """
279
 
280
  if(os.path.isdir(directory_path) == False):
281
+ os.makedirs(directory_path)
282
  Logger.log_action(directory_path + " created due to lack of the folder")
283
 
284
  ##--------------------start-of-standard_create_file()------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------