This commit is contained in:
2016-06-05 16:43:27 +02:00
parent faef4da6be
commit c9ba850b4b
14 changed files with 21 additions and 15 deletions

View File

@ -6,7 +6,10 @@ export let build = function(){
readDockerfiles()
.then(sortDockerfiles)
.then(mapDockerfiles)
.then(buildDockerfiles);
.then(buildDockerfiles)
.then(() => {
done.resolve();
});
return done.promise;
}