From 487f3dcc6da928de44de43422b58bf43a12e8b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Ramos?= Date: Wed, 31 May 2017 16:34:00 +0100 Subject: [PATCH] fix: correct push tag name --- scripts/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy b/scripts/deploy index 011e8ab3..ac8393a7 100755 --- a/scripts/deploy +++ b/scripts/deploy @@ -110,7 +110,7 @@ const build = async () => { await map(images, image => { LOG(`${figures.arrowRight} build.push ${image}`); - return execa('docker', ['push', `${image}}`], { + return execa('docker', ['push', `${image}`], { stdio: 'inherit' }); });