]> xenbits.xensource.com Git - xen.git/commitdiff
CI: Fix indentation in containerize script
authorAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 22 Mar 2019 11:12:28 +0000 (11:12 +0000)
committerWei Liu <wei.liu2@citrix.com>
Mon, 25 Mar 2019 11:34:48 +0000 (11:34 +0000)
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 <andrew.cooper3@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
automation/scripts/containerize

index a3e5d79c70a268e7b01311429450eef7d0a9d9ea..b50ff9944113784f97a15cbe5ec7c5cbc76572c0 100755 (executable)
@@ -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