update async nature of pull and push

This commit is contained in:
Philipp Kunz 2017-08-28 02:36:12 +02:00
parent fb95bdfdc0
commit 4646862fd6

View File

@ -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)
}
}