fix invalid var in prepare_offline_install_source() (#17342)
Ilya Mashchenko committed
Apr 8, 2024 at 18:31 UTC
94b6973d6ec5cf512c5eba764e796e11993959a3
1 file changed
+1
-1
packaging/installer/kickstart.sh
+1
-1
@@ -1922,7 +1922,7 @@ prepare_offline_install_source() {
1922
for arch in ${STATIC_INSTALL_ARCHES}; do
1923
set_static_archive_urls "${SELECTED_RELEASE_CHANNEL}" "${arch}"
1924
1925
- if check_for_remote_file "${NETDATA_STATIC_ARCH_URL}"; then
1925
+ if check_for_remote_file "${NETDATA_STATIC_ARCHIVE_URL}"; then
1926
progress "Fetching ${NETDATA_STATIC_ARCHIVE_URL}"
1927
if ! download "${NETDATA_STATIC_ARCHIVE_URL}" "netdata-${arch}-latest.gz.run"; then
1928
warning "Failed to download static installer archive for ${arch}. ${BADNET_MSG}."