Commit 6064aa25 authored by Nicolas Wavrant's avatar Nicolas Wavrant

make sure that dev folder exists in the backup folder

parent 22dc274b
......@@ -145,6 +145,9 @@ def getSha256Sum(file_path):
def synchroniseRunnerConfigurationDirectory(config, backup_path):
if not os.path.exists(backup_path):
os.makedirs(backup_path)
file_list = ['config.json']
for hidden_file in os.listdir('.'):
if hidden_file[0] == '.':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment