diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-02-09 13:45:10 +0100 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-02-09 14:57:16 +0100 |
commit | 411fca0b3d7539bde0917f8efa047700fbf7a8da (patch) | |
tree | cf924874c8f9f17f5fe29d8863e1a8e9e149dbbe | |
parent | eb0a0db318a988af9ed70f3cc3a68f3b2bf2aa93 (diff) | |
download | podman-411fca0b3d7539bde0917f8efa047700fbf7a8da.tar.gz podman-411fca0b3d7539bde0917f8efa047700fbf7a8da.tar.bz2 podman-411fca0b3d7539bde0917f8efa047700fbf7a8da.zip |
helloimage: header symmetry
Make the header symmetric by adding a whitespace before the `!` on the
righthand side.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
-rwxr-xr-x | contrib/helloimage/podman_hello_world.bash | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/contrib/helloimage/podman_hello_world.bash b/contrib/helloimage/podman_hello_world.bash index c28141174..a8919c92b 100755 --- a/contrib/helloimage/podman_hello_world.bash +++ b/contrib/helloimage/podman_hello_world.bash @@ -4,18 +4,18 @@ # duffy@redhat.com, Twitter: @mairin # January 2022 ### -echo " " -echo "! ... Hello Podman World ...!" -echo " " -echo " .--\"--. " -echo " / - - \\ " -echo " / (O) (O) \\ " -echo " ~~~| -=(,Y,)=- | " -echo " .---. /\` \\ |~~ " -echo " ~/ o o \\~~~~.----. ~~ " -echo " | =(X)= |~ / (O (O) \\ " -echo " ~~~~~~~ ~| =(Y_)=- | " -echo " ~~~~ ~~~| U |~~ " +echo " " +echo "! ... Hello Podman World ... !" +echo " " +echo " .--\"--. " +echo " / - - \\ " +echo " / (O) (O) \\ " +echo " ~~~| -=(,Y,)=- | " +echo " .---. /\` \\ |~~ " +echo " ~/ o o \\~~~~.----. ~~ " +echo " | =(X)= |~ / (O (O) \\ " +echo " ~~~~~~~ ~| =(Y_)=- | " +echo " ~~~~ ~~~| U |~~ " echo "" echo "Project: https://github.com/containers/podman" echo "Website: https://podman.io" |