Skip to content

Commit

Permalink
fix(kickstart.sh): correct wrong function name in perpare_offline_ins…
Browse files Browse the repository at this point in the history
…tall (netdata#19323)
  • Loading branch information
ilyam8 authored Jan 6, 2025
1 parent e820187 commit aa535b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/installer/kickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2114,7 +2114,7 @@ prepare_offline_install_source() {
failed_files=""
for file in $(find . -name '*.gz.run'); do
if ! grep -e "${file}" sha256sums.txt | safe_sha256sum -c -; then
failed_files="${failed_files}\n${file}\n$(report_bad_sha256sums "${file}" sha256sums.txt)"
failed_files="${failed_files}\n${file}\n$(report_bad_sha256sum "${file}" sha256sums.txt)"
fi
done

Expand Down

0 comments on commit aa535b4

Please sign in to comment.