Fix whitespaces across the bash scripts
[oom/offline-installer.git] / bash / tools / creating_data / make-docker-images-list.sh
index 61b236f..b925d91 100644 (file)
@@ -15,6 +15,9 @@
 #   limitations under the License.
 #
 #   COPYRIGHT NOTICE ENDS HERE
+
 readonly IMG_LIST="/tmp/docker_image_list.txt"
+
 echo "gathering images"
 docker images --digests | grep -v 'IMAGE ID'|awk '{printf("%s:%s %s\n", $1, $2, $3)}' > $IMG_LIST
+