Skip to content

Commit

Permalink
fix(mongodb-runner): add back arg passing to start command (#217)
Browse files Browse the repository at this point in the history
This was accidentally removed in 53faa4d.
  • Loading branch information
addaleax authored Feb 2, 2024
1 parent 1c6ca21 commit d16b1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mongodb-runner/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ import * as utilities from './index';
}

async function start() {
const { cluster, id } = await utilities.start(argv);
const { cluster, id } = await utilities.start(argv, args);
console.log(`Server started and running at ${cluster.connectionString}`);
console.log('Run the following command to stop the instance:');
console.log(
Expand Down

0 comments on commit d16b1d2

Please sign in to comment.