Skip to content

Commit

Permalink
Update src/lib/dev-environment/dev-environment-lando.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rinatkhaziev authored and sjinks committed May 24, 2024
1 parent f1fa64f commit 1bc863f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/dev-environment/dev-environment-lando.ts
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ export function validateDockerInstalled( lando: Lando ): void {
if ( ! engine ) {
if ( ! lando.config.dockerBin ) {
throw new UserError(
'docker could not be located! Please follow the following instructions to install it - https://docs.docker.com/engine/install/'
'docker binary could not be located! Please follow the following instructions to install it - https://docs.docker.com/engine/install/'
);
}

Expand All @@ -720,7 +720,7 @@ export function validateDockerInstalled( lando: Lando ): void {
if ( ! composePlugin ) {
if ( ! compose ) {
throw new Error(
'docker-compose could not be located! Please follow the following instructions to install it - https://docs.docker.com/compose/install/'
'docker-compose binary could not be located! Please follow the following instructions to install it - https://docs.docker.com/compose/install/'
);
}

Expand Down

0 comments on commit 1bc863f

Please sign in to comment.