allow multiple local-build/static-install options in kickstart (#14287)
Ilya Mashchenko committed
Jan 18, 2023 at 11:37 UTC
51565d55e92b6f814a09ca87d3c77a40acba576c
1 file changed
+2
-2
packaging/installer/kickstart.sh
+2
-2
@@ -2219,11 +2219,11 @@ parse_args() {
2219
esac
2220
;;
2221
"--local-build-options")
2222
- LOCAL_BUILD_OPTIONS="${2}"
2222
+ LOCAL_BUILD_OPTIONS="${LOCAL_BUILD_OPTIONS} ${2}"
2223
shift 1
2224
;;
2225
"--static-install-options")
2226
- STATIC_INSTALL_OPTIONS="${2}"
2226
+ STATIC_INSTALL_OPTIONS="${STATIC_INSTALL_OPTIONS} ${2}"
2227
shift 1
2228
;;
2229
"--prepare-offline-install-source")