import { PullAndPush } from './core/pullAndPush' async function main() { await new PullAndPush(false, false).run() } main().catch((error) => { console.error(error); process.exitCode = 1; })