remove debug messages

This commit is contained in:
2017-07-27 15:38:40 +02:00
parent e68ee9e593
commit 1ca90eb64d
4 changed files with 2 additions and 6 deletions

View File

@ -12,7 +12,6 @@ export type TBuildService = 'docker'
* builds for a specific service
*/
export let build = async (argvArg): Promise<void> => {
console.log(argvArg)
let whatToPublish: string = argvArg._[1]
switch (whatToPublish) {
case 'docker':

View File

@ -14,7 +14,6 @@ smartcli.addVersion(npmciInfo.version)
smartcli.addCommand('build')
.then(async argvArg => {
let modBuild = await npmciMods.modBuild.load()
console.log(argvArg)
await modBuild.build(argvArg)
NpmciEnv.configStore()
}).catch(err => {