aboutsummaryrefslogtreecommitdiff
path: root/commands/reinstall.js
blob: f25e7acd1e6a72c7f3d2b4b2f2121d9409ca364f (plain)
1
2
3
4
5
module.exports = async (argv) => {
    await require('./remove')(argv, true);
    fs.writeFileSync(os.homedir() + "/.twilight/installed.json", JSON.stringify(JSON.parse(fs.readFileSync(os.homedir() + "/.twilight/installed.json").toString()).filter(i => i !== null)));
    await require('./install')(argv);
}