UNPKG

savas-cli

Version:

A cli tool to manage releases through the terminal

14 lines (11 loc) 319 B
const Config = require('../../components/config') module.exports = (host) => { let config = new Config() if (config.isTouched()) { config.data.remote = host config.write() console.log('remote set to "%s"', host) } else { console.log('savas is not yet initialized') } }