mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 20:38:35 +00:00
Merge pull request #67 from Steveb-p/fix-trailing-commas
Fix trailing commas causing syntax error on NodeJS 6.x
This commit is contained in:
commit
4125516f2b
1 changed files with 3 additions and 3 deletions
6
index.js
6
index.js
|
|
@ -231,7 +231,7 @@ const buildAll = function (options) {
|
|||
return execCompose(
|
||||
'build',
|
||||
options.parallel ? [ '--parallel' ] : [],
|
||||
options,
|
||||
options
|
||||
);
|
||||
};
|
||||
|
||||
|
|
@ -251,7 +251,7 @@ const buildMany = function (services, options) {
|
|||
return execCompose(
|
||||
'build',
|
||||
options.parallel ? [ '--parallel' ].concat(services) : services,
|
||||
options,
|
||||
options
|
||||
);
|
||||
};
|
||||
|
||||
|
|
@ -343,7 +343,7 @@ const push = function (options) {
|
|||
return execCompose(
|
||||
'push',
|
||||
options.ignorePushFailures ? [ '--ignore-push-failures' ] : [],
|
||||
options,
|
||||
options
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue