From ef756adc935f59c2b2c6fcb5ac768e7826fcc119 Mon Sep 17 00:00:00 2001 From: Ignatiev Mikhail Date: Sat, 16 Jun 2018 14:14:40 +0300 Subject: [PATCH] reverted back string interps cause original repo is using them --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 66311aa..d0facf8 100644 --- a/index.js +++ b/index.js @@ -43,7 +43,7 @@ const configToArgs = config => { * @param {?(string|string[])} [options.config] */ const execCompose = (command, options) => new Promise((resolve, reject) => { - const cmd = 'docker-compose ' + configToArgs(options.config) + ' ' + command; + const cmd = `docker-compose ${configToArgs(options.config)} ${command}`; const cwd = options.cwd; exec(cmd, { cwd }).then(