From dcddefa4cd5476c52279d4799f96616729b52e36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Berg=20J=C3=A1nos?= Date: Sat, 3 May 2025 10:54:14 +0200 Subject: [PATCH] # Additional documentation. --- build/nginx/build.sh | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/build/nginx/build.sh b/build/nginx/build.sh index d5e54a5..819143e 100755 --- a/build/nginx/build.sh +++ b/build/nginx/build.sh @@ -1,14 +1,20 @@ #!/bin/bash -echo This is a sample build script, if the workflow cannot be used. -echo Please customize the repository address/name for your own. - - +# --------------------------------------------------------------------------- +# setting constants PACKAGE_REPOSITORY=proxima.goliath.hu/proxima/backend BUILD_TAG=nginx UID=$(id -u) GID=$(id -g) +# --------------------------------------------------------------------------- + +clear + +echo This is a sample build script, if the workflow cannot be used. +echo Please customize the repository address/name for your own. +echo + # --------------------------------------------------------------------------- echo Building "${BUILD_TAG}" package .. echo @@ -53,6 +59,5 @@ echo Changing back to build directory... popd > /dev/null - # --------------------------------------------------------------------------- echo Done.