Skip to content

Commit

Permalink
feat: quiet docker check
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Feb 22, 2024
1 parent c6552cd commit ed39644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/env.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const assertDockerRunning = async () => {
try {
await execute({
command: 'docker',
args: ['ps']
args: ['ps', '--quiet']
});
} catch (e: unknown) {
process.exit(1);
Expand Down

0 comments on commit ed39644

Please sign in to comment.