From c01325214b439275eb2c71066e8a0ef697010198 Mon Sep 17 00:00:00 2001 From: Tim Downey Date: Thu, 11 May 2017 16:32:20 -0700 Subject: [PATCH] Redact private_docker_registry image and username - current grep only removes password lines - this grep still displays `include_private_docker_registry` [#144962927] Signed-off-by: Michael Xu --- bin/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/test b/bin/test index ad5e15193..47f099c96 100755 --- a/bin/test +++ b/bin/test @@ -8,7 +8,7 @@ if [ ! -f "${CONFIG}" ]; then fi echo "Printing sanitized \$CONFIG" -grep -v password $CONFIG +grep -v -e password -e private_docker_registry_ $CONFIG bin_dir=$(dirname "${BASH_SOURCE[0]}") project_go_root="${bin_dir}/../../../../../"