We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90b9ba4 commit 92a497dCopy full SHA for 92a497d
container/incremental_load.sh.tpl
@@ -33,6 +33,11 @@ RUNFILES="${PYTHON_RUNFILES:-$(guess_runfiles)}"
33
34
DOCKER="%{docker_tool_path}"
35
36
+if [[ -z "${DOCKER}" ]]; then
37
+ echo >&2 "error: docker not found; do you need to manually configure the docker toolchain?"
38
+ exit 1
39
+fi
40
+
41
# Create temporary files in which to record things to clean up.
42
TEMP_FILES="$(mktemp -t 2>/dev/null || mktemp -t 'rules_docker_files')"
43
TEMP_IMAGES="$(mktemp -t 2>/dev/null || mktemp -t 'rules_docker_images')"
0 commit comments