RSS Git Download  Clone
Raw Blame History
#!/usr/bin/env node


const lib = require('../src/lib');

const start = async() => {

    await lib.init();

    lib.projects.forEach((project) => {
        lib.exec(project, `git pull`)
    })

    console.log('DONE :)')
}

start();