Skip to content

Commit

Permalink
Improve docker pull error message (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Aug 14, 2024
1 parent 24ace04 commit a47547d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/verify-exercises-in-docker
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ copy_example_or_examplar_to_solution() {
}

pull_docker_image() {
docker pull exercism/{{SLUG}}-test-runner
docker pull exercism/{{SLUG}}-test-runner ||
die $'Could not find the `exercism/{{SLUG}}-test-runner` Docker image.\nCheck the test runner docs at https://exercism.org/docs/building/tooling/test-runners for more information.'
}

run_tests() {
Expand Down

0 comments on commit a47547d

Please sign in to comment.