From 9be2c52b180ef30dcfffa1b5d954f29bf4756c35 Mon Sep 17 00:00:00 2001
From: Tobias Poganiuch <tobias.poganiuch@seco.com>
Date: Tue, 7 Nov 2023 06:45:20 +0100
Subject: [PATCH] pipeline:build: Fix indentation of here-doc

---
 build-pipeline.yml | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/build-pipeline.yml b/build-pipeline.yml
index 468fc3cd..a1a12b06 100644
--- a/build-pipeline.yml
+++ b/build-pipeline.yml
@@ -72,25 +72,25 @@ workflow:
           echo "Warning: Install script missing, searched for '$SCRIPT'"
       else
         if [ "$CI_PROJECT_VISIBILITY" = "public" ];then
-            cat <<-EOF
-            ==============================
-                Install the image:
+      cat <<-EOF
+      ==============================
+          Install the image:
 
-            FNG="$FNG_INSTALL_URL"
-            curl --location "\$FNG" | sh -s -- --url="\$(dirname "\$FNG")"
-            ==============================
-          EOF
-            else
-            cat <<-EOF
-            ==============================
-                Install the image:
+      FNG="$FNG_INSTALL_URL"
+      curl --location "\$FNG" | sh -s -- --url="\$(dirname "\$FNG")"
+      ==============================
+    EOF
+      else
+      cat <<-EOF
+      ==============================
+          Install the image:
 
-            export GITLAB_TOKEN=<your_access_token>
-            FNG="$FNG_INSTALL_URL"
-            curl --location --header "PRIVATE-TOKEN: \$GITLAB_TOKEN" "\$FNG" \
-                                      | sh -s -- --url="\$(dirname "\$FNG")"
-            ==============================
-          EOF
+      export GITLAB_TOKEN=<your_access_token>
+      FNG="$FNG_INSTALL_URL"
+      curl --location --header "PRIVATE-TOKEN: \$GITLAB_TOKEN" "\$FNG" \
+                                | sh -s -- --url="\$(dirname "\$FNG")"
+      ==============================
+    EOF
         fi
       fi
     fi
-- 
GitLab