mirror of
1
0
Fork 0

Check for empty sources_non_forked_cache folder

This commit is contained in:
Wu Tingfeng 2022-11-24 19:49:27 +08:00
parent 92ee19d643
commit 22cbb862ee
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import tempfile
import urllib.request
import zipfile
from io import BytesIO
from os import path
from os import listdir, path
# --- Globals ----------------------------------------------
PLUGINS = """
@ -105,7 +105,7 @@ def update(plugin):
if __name__ == "__main__":
temp_directory = tempfile.mkdtemp()
if not path.isdir(SOURCE_DIR):
if not path.isdir(SOURCE_DIR) or not listdir(SOURCE_DIR):
shutil.copytree(FALLBACK_SOURCE_DIR, SOURCE_DIR)
try: