Compare commits

..

2 Commits

Author SHA1 Message Date
8dade860f5 2.1.13 2016-06-05 07:17:13 +02:00
9d4c8ce68b fix 2016-06-05 07:17:02 +02:00
3 changed files with 8 additions and 8 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "npmci",
"version": "2.1.12",
"version": "2.1.13",
"description": "",
"main": "dist/index.js",
"bin": {

View File

@@ -5,7 +5,7 @@ import * as NpmciEnv from "./npmci.env";
export let build = function(){
let done = plugins.q.defer();
plugins.gulp.dest("./Dockerfile*")
.pipe(readDockerfiles)
.pipe(readDockerfiles())
.pipe(plugins.gulpFunction(function(){
sortDockerfiles()
.then(buildDockerfiles)
@@ -15,7 +15,7 @@ export let build = function(){
}
let readDockerfiles = function(){
return function(file,enc,cb){
return plugins.trhough2(function(file,enc,cb){
let myDockerfile = new Dockerfile({
filePath:file.path,
read:true
@@ -24,7 +24,7 @@ let readDockerfiles = function(){
myDockerfile
);
cb(null,file);
};
});
}
let sortDockerfiles = function(){