reverted back string interps cause original repo is using them

This commit is contained in:
Ignatiev Mikhail 2018-06-16 14:14:40 +03:00
parent 794905e7c9
commit ef756adc93

View file

@ -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(