From 4646862fd68d4f0fc135b3787b61d3c44391e375 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 28 Aug 2017 02:36:12 +0200 Subject: [PATCH] update async nature of pull and push --- ts/mod_docker/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/mod_docker/index.ts b/ts/mod_docker/index.ts index 7273947..d719497 100644 --- a/ts/mod_docker/index.ts +++ b/ts/mod_docker/index.ts @@ -111,7 +111,7 @@ export let push = async (argvArg) => { process.exit(1) } for (let dockerfile of dockerfileArray) { - dockerfile.push(localDockerRegistry, suffix) + await dockerfile.push(localDockerRegistry, suffix) } }