mirror of
https://github.com/netdata/netdata.git
synced 2025-04-23 13:00:23 +00:00
fix(kickstart.sh): correct wrong function name in perpare_offline_install (#19323)
This commit is contained in:
parent
e8201874dc
commit
aa535b4317
1 changed files with 1 additions and 1 deletions
|
@ -2114,7 +2114,7 @@ prepare_offline_install_source() {
|
||||||
failed_files=""
|
failed_files=""
|
||||||
for file in $(find . -name '*.gz.run'); do
|
for file in $(find . -name '*.gz.run'); do
|
||||||
if ! grep -e "${file}" sha256sums.txt | safe_sha256sum -c -; then
|
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
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue