Compare commits

...

2 Commits

Author SHA1 Message Date
cebcfc9fc5 2.1.45 2016-06-07 13:40:48 +02:00
ba047ed586 added some log messages for debugging 2016-06-07 13:40:42 +02:00
3 changed files with 6 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

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

View File

@@ -188,7 +188,9 @@ export class Dockerfile {
bashBare("docker push " + this.releaseTag);
}
getId(){
console.log("docker inspect --type=image --format=\"{{.Id}}\" " + this.buildTag);
let containerId = bashBare("docker inspect --type=image --format=\"{{.Id}}\" " + this.buildTag);
console.log(containerId);
return containerId;
};
patchContents(){