Skip to content

Commit a47547d

Browse files
Improve docker pull error message (#189)
1 parent 24ace04 commit a47547d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/verify-exercises-in-docker

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ copy_example_or_examplar_to_solution() {
3030
}
3131

3232
pull_docker_image() {
33-
docker pull exercism/{{SLUG}}-test-runner
33+
docker pull exercism/{{SLUG}}-test-runner ||
34+
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.'
3435
}
3536

3637
run_tests() {

0 commit comments

Comments
 (0)