aboutsummaryrefslogtreecommitdiff
path: root/hooks/apply_update.js
blob: 8ad9108319a6ce54c5c475210484fe509f1a83a9 (plain)
1
2
3
4
5
6
7
8
module.exports = (pkg, tempDir) => {
    files = require('./files')(tempDir);
    for (let file of files) {
        if (file.trim() !== "") {
            fs.copyFileSync(home + "/packages/" + tempDir + "/" + file, home + "/packages/" + pkg + "/" + file);
        }
    }
}