mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-09 02:41:06 +03:00
Ensure repo directory is created in new setup
This commit is contained in:
parent
9cf282fdc1
commit
2dd67187fb
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ def main():
|
||||||
if options.clean and os.path.exists(icon_dir):
|
if options.clean and os.path.exists(icon_dir):
|
||||||
shutil.rmtree(icon_dir)
|
shutil.rmtree(icon_dir)
|
||||||
if not os.path.exists(icon_dir):
|
if not os.path.exists(icon_dir):
|
||||||
os.mkdir(icon_dir)
|
os.makedirs(icon_dir)
|
||||||
|
|
||||||
warnings = 0
|
warnings = 0
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue