fixed entries

This commit is contained in:
Trilarion
2018-06-15 15:46:07 +02:00
parent 10070e5c3b
commit 77be2ca2c3
20 changed files with 82 additions and 53 deletions

View File

@@ -124,6 +124,8 @@ def run(type, urls):
folders = [os.path.join(base_folder, x) for x in folders]
os.chdir(base_folder)
for folder, url in zip(folders, urls):
if url.startswith('https://git.code.sf.net/p/'):
continue
if not os.path.isdir(folder):
clone[type](url, folder)
@@ -131,7 +133,8 @@ def run(type, urls):
for folder in folders:
print('update {}'.format(os.path.basename(folder)))
if not os.path.isdir(folder):
raise Exception('folder to update not existing')
print('folder not existing, wanted to update, will skip')
continue
update[type](folder)