restructure some commands

This commit is contained in:
2016-06-04 18:41:35 +02:00
parent 7ca6578443
commit 9d092aa280
4 changed files with 36 additions and 28 deletions

View File

@@ -2,18 +2,14 @@ import "typings-global";
import * as plugins from "./npmci.plugins";
import {bash} from "./npmci.bash";
import * as env from "./npmci.env";
import * as buildDocker from "./npmci.build.docker"
export let build = function(commandArg){
switch(commandArg){
case "docker":
return docker();
return buildDocker.build();
}
}
let docker = function(){
let done = plugins.q.defer();
plugins.shelljs.exec("docker build -t " + env.dockerTag());
done.resolve();
return done.promise;
}