You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/verify-exercises-in-docker
+24-21Lines changed: 24 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -40,23 +40,22 @@ splice_example_with_tests() {
40
40
}
41
41
42
42
pull_docker_image() {
43
-
docker pull "${image}"||
44
-
die $'Could not find the `'"${image}"$'` Docker image.\nCheck the test runner docs at https://exercism.org/docs/building/tooling/test-runners for more information.'
43
+
local msg
44
+
# shellcheck disable=SC2016 # %s is a printf format specifier, not a shell expansion
45
+
printf -v msg 'Could not find the `%s` Docker image.\nCheck the test runner docs at https://exercism.org/docs/building/tooling/test-runners for more information.'"${image}"
0 commit comments