summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2023-01-18 11:37:49 +0200
committerGitHub <noreply@github.com>2023-01-18 11:37:49 +0200
commit51565d55e92b6f814a09ca87d3c77a40acba576c (patch)
treec8cea6af5a25a4ad00d805abbdf8848616bf25c6 /packaging
parent59e71195b956fc897abc9e973b1f3b52bb525be9 (diff)
allow multiple local-build/static-install options in kickstart (#14287)
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/installer/kickstart.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/installer/kickstart.sh b/packaging/installer/kickstart.sh
index 001567c0ab..8ccd2c22b3 100755
--- a/packaging/installer/kickstart.sh
+++ b/packaging/installer/kickstart.sh
@@ -2219,11 +2219,11 @@ parse_args() {
esac
;;
"--local-build-options")
- LOCAL_BUILD_OPTIONS="${2}"
+ LOCAL_BUILD_OPTIONS="${LOCAL_BUILD_OPTIONS} ${2}"
shift 1
;;
"--static-install-options")
- STATIC_INSTALL_OPTIONS="${2}"
+ STATIC_INSTALL_OPTIONS="${STATIC_INSTALL_OPTIONS} ${2}"
shift 1
;;
"--prepare-offline-install-source")