1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Ensure repo directory is created in new setup

This commit is contained in:
Ciaran Gultnieks 2012-09-27 13:16:52 +01:00
parent 9cf282fdc1
commit 2dd67187fb

View File

@ -210,7 +210,7 @@ def main():
if options.clean and os.path.exists(icon_dir):
shutil.rmtree(icon_dir)
if not os.path.exists(icon_dir):
os.mkdir(icon_dir)
os.makedirs(icon_dir)
warnings = 0