We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd2e4c commit 6878d7fCopy full SHA for 6878d7f
docker/withComposeConfig.js
@@ -23,7 +23,7 @@ const getComposeConfig = require('./getComposeConfig');
23
async function withComposeConfig(args, callback) {
24
const rootComposeFile = getRootComposeFile(args);
25
const config = getComposeConfig(args, rootComposeFile);
26
- await callback(config).catch((error) => console.error('')); // eslint-disable-line no-console
+ await callback(config).catch(() => console.error('')); // eslint-disable-line no-console
27
// console.log(error); // eslint-disable-line no-console
28
// console.log('\nThere was an error. You can find more information in the
29
// output above \n'); // eslint-disable-line no-console
0 commit comments