This commit is contained in:
2016-06-05 07:27:58 +02:00
parent 9ce29a7c24
commit f51b556fca
5 changed files with 8 additions and 5 deletions

View File

@ -15,7 +15,7 @@ export let build = function(){
}
let readDockerfiles = function(){
return plugins.trhough2(function(file,enc,cb){
return plugins.through2(function(file,enc,cb){
let myDockerfile = new Dockerfile({
filePath:file.path,
read:true

View File

@ -9,4 +9,5 @@ export let request = require("request");
export let shelljs = require("shelljs");
export import smartssh = require("smartssh");
export import smartstring = require("smartstring");
export import smartfile = require("smartfile");
export import smartfile = require("smartfile");
export let through2 = require("through2");