Check for empty sources_non_forked_cache folder
This commit is contained in:
parent
92ee19d643
commit
22cbb862ee
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ import tempfile
|
||||||
import urllib.request
|
import urllib.request
|
||||||
import zipfile
|
import zipfile
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
from os import path
|
from os import listdir, path
|
||||||
|
|
||||||
# --- Globals ----------------------------------------------
|
# --- Globals ----------------------------------------------
|
||||||
PLUGINS = """
|
PLUGINS = """
|
||||||
|
@ -105,7 +105,7 @@ def update(plugin):
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
temp_directory = tempfile.mkdtemp()
|
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)
|
shutil.copytree(FALLBACK_SOURCE_DIR, SOURCE_DIR)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue