Skip to content

Commit

Permalink
Update apps/cli/src/commands/doctor.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Danilo Tuler <[email protected]>
  • Loading branch information
endersonmaia and tuler authored Apr 30, 2024
1 parent d13cfee commit d991ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/cli/src/commands/doctor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class DoctorCommand extends BaseCommand<typeof DoctorCommand> {
e instanceof Error &&
(e as NodeJS.ErrnoException).code === "ENOENT"
) {
throw new Error("Docker is required but not installed.");
throw new Error("Docker not found");
} else {
throw e;
}
Expand Down

0 comments on commit d991ad0

Please sign in to comment.