From a294868bbf36ef291630554da151c5080e060325 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Anguita=20L=C3=B3pez?= Date: Mon, 18 Nov 2024 13:22:01 +0100 Subject: [PATCH 1/2] show getHelp when no parameter is passed to the builder script --- builder.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/builder.sh b/builder.sh index 1ef03bf..9b9cc02 100755 --- a/builder.sh +++ b/builder.sh @@ -198,6 +198,10 @@ function builder_main() { umask 066 + if [ $# -eq 0 ]; then + getHelp + fi + while [ -n "${1}" ] do case "${1}" in From 181fcb956c3d63d3425e99f375608e59eeb06502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Anguita=20L=C3=B3pez?= Date: Mon, 18 Nov 2024 13:29:49 +0100 Subject: [PATCH 2/2] updated changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 188b7cb..b40bda3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ All notable changes to this project will be documented in this file. ### Fixed -- None +- Print getHelp output when no parameter is passed to the builder script. ([#142](https://github.com/wazuh/wazuh-installation-assistant/pull/142)) ### Deleted