From cc9470c2d8134106792a5a0179fbd0c6ca4d37af Mon Sep 17 00:00:00 2001 From: Giulio Benetti Date: Mon, 14 Feb 2022 18:38:55 +0100 Subject: [PATCH] utils/docker-run: hide docker run command Since this is a helper script there is not much reason to show the command that's been issued. Furthermore, the incantation has been slightly extended since the script was introduced. The only interesting reason to print the command is to know what image it is being spawned into. However, this is prominently displayed by docker the first time the script is run, as it can't find the image locally and has to fetch it first. Afterwards, users can still use 'docker image ls' to see what images they have locally. So let's remove 'set -x' before running docker. Signed-off-by: Giulio Benetti [yann.morin.1998@free.fr: reword and expand commit log] Signed-off-by: Yann E. MORIN --- utils/docker-run | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/docker-run b/utils/docker-run index bdbc979264..5653764254 100755 --- a/utils/docker-run +++ b/utils/docker-run @@ -6,7 +6,6 @@ MAIN_DIR=$(readlink -f "${DIR}/..") IMAGE=$(grep ^image: "${MAIN_DIR}/.gitlab-ci.yml" | \ sed -e 's,^image: ,,g' | sed -e 's,\$CI_REGISTRY,registry.gitlab.com,g') -set -x exec docker run -it --rm \ --user $(id -u):$(id -g) \ --mount "type=bind,src=${MAIN_DIR},dst=${MAIN_DIR}" \