Compare commits

...

5 Commits

Author SHA1 Message Date
61720f47be 2.1.23 2016-06-05 09:42:14 +02:00
b435fc6bdf update smartstring 2016-06-05 09:42:08 +02:00
70ad41ab86 fix gitlab.yml 2016-06-05 09:38:11 +02:00
d67109b4bc 2.1.22 2016-06-05 09:34:21 +02:00
a29e04f9e3 fix gitlab.yml 2016-06-05 09:33:51 +02:00
3 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{ {
"name": "npmci", "name": "npmci",
"version": "2.1.21", "version": "2.1.23",
"description": "", "description": "",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {
@@ -32,7 +32,7 @@
"shelljs": "^0.7.0", "shelljs": "^0.7.0",
"smartfile": "^3.0.10", "smartfile": "^3.0.10",
"smartssh": "^1.0.5", "smartssh": "^1.0.5",
"smartstring": "^2.0.4", "smartstring": "^2.0.6",
"through2": "^2.0.1", "through2": "^2.0.1",
"typings-global": "^1.0.3" "typings-global": "^1.0.3"
} }

View File

@@ -44,11 +44,11 @@ let sortDockerfiles = function(){
let aIndex = notYetBuiltImages.indexOf(a.cleanTag); let aIndex = notYetBuiltImages.indexOf(a.cleanTag);
if(aIndex != -1){notYetBuiltImages.splice(aIndex,1)} if(aIndex != -1){notYetBuiltImages.splice(aIndex,1)}
console.log(notYetBuiltImages); console.log(notYetBuiltImages);
if(notYetBuiltImages.indexOf(b.cleanTag) != -1){ if(notYetBuiltImages.indexOf(b.baseImage) != -1){
redoSort = true; redoSort = true;
return -1; return -1;
} else { } else {
return 1 return 0
} }
}); });
if(redoSort && sortCounter <= 50){ if(redoSort && sortCounter <= 50){