Loading build-plugins.py +1 −1 Original line number Diff line number Diff line Loading @@ -63,7 +63,7 @@ for f in os.listdir(): for f in plugin["files"]: shutil.copyfile(f, os.path.join(target_folder_name, plugin['name'], os.path.basename(f))) for f in plugin["folders"]: shutil.copytree(f, os.path.join(target_folder_name, plugin['name'], os.path.basename(f))) shutil.copytree(f, os.path.join(target_folder_name, plugin['folders'], os.path.basename(f))) except Exception as e: print("Error handling plugin " + f) print(repr(e)) Loading Loading
build-plugins.py +1 −1 Original line number Diff line number Diff line Loading @@ -63,7 +63,7 @@ for f in os.listdir(): for f in plugin["files"]: shutil.copyfile(f, os.path.join(target_folder_name, plugin['name'], os.path.basename(f))) for f in plugin["folders"]: shutil.copytree(f, os.path.join(target_folder_name, plugin['name'], os.path.basename(f))) shutil.copytree(f, os.path.join(target_folder_name, plugin['folders'], os.path.basename(f))) except Exception as e: print("Error handling plugin " + f) print(repr(e)) Loading