UNPKG

@beelab/deployer

Version:

Deployer tools

11 lines (8 loc) 249 B
const { exec } = require('./../providers/ssh'); const { get } = require("./../services/configuration"); module.exports = { make(cmd) { const releasePath = get('RELEASE_PATH'); return exec(`make ${cmd}`, releasePath); }, };