UNPKG

emerald-templates

Version:

Intelligent Template Generation & Project Management

9 lines (6 loc) 187 B
const { promisify } = require('util') const exec = promisify(require('child_process').exec) function gitPull(path) { return exec('git pull', { cwd: path }) } module.exports = gitPull