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:
parent
03ab264e28
commit
42bee23108
1 changed files with 3 additions and 0 deletions
3
dzgui.sh
3
dzgui.sh
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue