We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811049d commit 209f29fCopy full SHA for 209f29f
engine/docker.sh
@@ -229,7 +229,8 @@ function build_image() {
229
_container_mount_portage='false'
230
231
_status_msg="commit ${run_id} as image ${_current_namespace}/${builder_commit_id}:${IMAGE_TAG}"
232
- pwrap 'nolog' "${DOCKER}" commit "${DOCKER_COMMIT_OPTS}" "${run_id}" "${_current_namespace}/${builder_commit_id}:${IMAGE_TAG}" \
+ # shellcheck disable=SC2086
233
+ pwrap 'nolog' "${DOCKER}" commit ${DOCKER_COMMIT_OPTS} "${run_id}" "${_current_namespace}/${builder_commit_id}:${IMAGE_TAG}" \
234
|| die "${_status_msg}"
235
236
_status_msg="remove container ${run_id}"
0 commit comments