@cryptotaxi247 / netdata-1 / commits / aa535b431

fix(kickstart.sh): correct wrong function name in perpare_offline_install (#19323)

Ilya Mashchenko committed Jan 6, 2025 at 11:50 UTC aa535b43175d8c89136062cba5126cae79a57b92
1 file changed +1 -1
packaging/installer/kickstart.sh
+1 -1
@@ -2114,7 +2114,7 @@ prepare_offline_install_source() {
2114 failed_files=""
2115 for file in $(find . -name '*.gz.run'); do
2116 if ! grep -e "${file}" sha256sums.txt | safe_sha256sum -c -; then
2117 - failed_files="${failed_files}\n${file}\n$(report_bad_sha256sums "${file}" sha256sums.txt)"
2117 + failed_files="${failed_files}\n${file}\n$(report_bad_sha256sum "${file}" sha256sums.txt)"
2118 fi
2119 done
2120