Skip to content

Commit fd7e728

Browse files
author
Matthias Leutenegger
committed
fix: supress error message
1 parent 567f7e2 commit fd7e728

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/withComposeConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const getComposeConfig = require('./getComposeConfig');
2323
async function withComposeConfig(args, callback) {
2424
const rootComposeFile = getRootComposeFile(args);
2525
const config = getComposeConfig(args, rootComposeFile);
26-
await callback(config).catch((error) => console.error(error)); // eslint-disable-line no-console
26+
await callback(config).catch((error) => console.error('')); // eslint-disable-line no-console
2727
// console.log(error); // eslint-disable-line no-console
2828
// console.log('\nThere was an error. You can find more information in the
2929
// output above \n'); // eslint-disable-line no-console

0 commit comments

Comments
 (0)