From 931ae70099cfd091e4beae797755ea54ca27876a Mon Sep 17 00:00:00 2001 From: Guillaume Lambert Date: Tue, 4 May 2021 10:31:14 +0200 Subject: [PATCH] Fix: bashate E002 warnings about tabs indents Tabs must be avoided and replaced by 4 whitespaces according to the standard usage. Signed-off-by: Guillaume Lambert Change-Id: Ic21fe1646b60b6630d54fd16b8b2e1fa6d4c49fb --- shell/update-cloud-images.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/update-cloud-images.sh b/shell/update-cloud-images.sh index 6fe4186c..2503a1e3 100644 --- a/shell/update-cloud-images.sh +++ b/shell/update-cloud-images.sh @@ -46,9 +46,9 @@ while read -r line ; do new_image_type="${NEW_IMAGE_NAME% -*}" # get the $new_image_type to check the image type is being compared if [[ ${new_image_type} != "${image_type}" ]]; then - echo "INFO: Image type does not match, continue ..." - continue - fi + echo "INFO: Image type does not match, continue ..." + continue + fi else new_image=$(openstack image list --long -f value -c Name -c Protected \ | grep "${image_type}.*False" | tail -n-1 | sed 's/ False//') \ -- 2.16.6