From 1316369dca610352cce3aaf76e90db1cce75ed9f Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Fri, 22 Mar 2019 11:12:28 +0000 Subject: [PATCH] CI: Fix indentation in containerize script The script is mostly indented with spaces, but there are three tabs. Fix them up to be consistent. No functional change. Signed-off-by: Andrew Cooper Acked-by: Wei Liu --- automation/scripts/containerize | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/automation/scripts/containerize b/automation/scripts/containerize index a3e5d79c70..b50ff99441 100755 --- a/automation/scripts/containerize +++ b/automation/scripts/containerize @@ -1,7 +1,7 @@ #!/bin/bash einfo() { - echo "$*" >&2 + echo "$*" >&2 } die() { @@ -59,8 +59,8 @@ fi # Ensure we've got what we need for SSH_AUTH_SOCK if [[ -n ${SSH_AUTH_SOCK} ]]; then - fullpath_sock=$(${READLINK} -f ${SSH_AUTH_SOCK} 2> /dev/null) - if [ $? -ne 0 ]; then + fullpath_sock=$(${READLINK} -f ${SSH_AUTH_SOCK} 2> /dev/null) + if [ $? -ne 0 ]; then echo "Invalid SSH_AUTH_SOCK: ${SSH_AUTH_SOCK}" unset SSH_AUTH_SOCK else -- 2.30.2