Skip to content

Commit

Permalink
Merge pull request #314 from CircleCI-Public/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
Christopher authored Jul 11, 2019
2 parents e1877c1 + c301378 commit b0a23c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ You can use 'circleci config process' to pre-process your config into a version

func ensureDockerIsAvailable() error {
if _, err := exec.LookPath("docker"); err != nil {
return errors.New("could not find `docker` on the PATH; please ensure than docker is installed")
return errors.New("could not find `docker` on the PATH; please ensure that docker is installed")
}

dockerRunning := exec.Command("docker", "version").Run() == nil // #nosec
Expand Down

0 comments on commit b0a23c0

Please sign in to comment.