Source: Engines/Wine/Tools/Repair Wine Prefix/script.js

const Wine = include("engines.wine.engine.object");

/**
 * Tool to repair a Wine prefix
 */
// eslint-disable-next-line no-unused-vars
module.default = class RepairWinePrefixTool {
    constructor() {
        // do nothing
    }

    run(container) {
        new Wine()
            .prefix(container)
            .run("wineboot", [], null, false, true);
    }
}