Commit 223a73ac authored by Valentin Buck's avatar Valentin Buck
Browse files

Tried another thing on the build

parent 0f2086cb
Loading
Loading
Loading
Loading
Loading
+7297 −0

File added.

Preview size limit exceeded, changes collapsed.

+7297 −0

File added.

Preview size limit exceeded, changes collapsed.

+4163 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −1
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ def process_plugin_folder(path):
            plugin_folders += l[7:].strip()
    print(plugin_name)
    print(plugin_files)
    print(plugin_folders)
    return {
        'name': plugin_name,
        'files': plugin_files,
@@ -63,7 +64,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['folders'], os.path.basename(f)))
                shutil.copytree(f, os.path.join(target_folder_name, plugin['name'], os.path.basename(f)))
        except Exception as e:
            print("Error handling plugin " + f)
            print(repr(e))