1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-28 05:12:36 +01:00

feat: extra sum check

This commit is contained in:
aclist 2024-01-13 15:18:34 +09:00
parent 03ab264e28
commit 42bee23108

View file

@ -552,6 +552,9 @@ fetch_helpers_by_sum(){
if [[ ! $? -eq 0 ]]; then
raise_error_and_quit "Failed to fetch the file '$file'. Possible timeout?"
fi
if [[ $(get_hash) $full_path != $sum ]]; then
logger WARN "Downloaded new '$file', but checksum != '$sum'"
fi
logger INFO "Updated '$full_path' to sum '$sum'"
fi
[[ $file == "funcs" ]] && chmod +x "$full_path"