1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 12:03:00 +02:00

fix: presetup checks

This commit is contained in:
aclist 2024-01-12 14:33:33 +09:00
parent 1566f8ade6
commit 06a389eebe

View file

@ -540,12 +540,11 @@ fetch_helpers_by_sum(){
file="$i"
sum="${sums[$i]}"
full_path="$helpers_path/$file"
cur_sum=$(get_hash "$helpers_path/$file")
if [[ -f "$full_path" ]] && [[ $cur_sum == $sum ]]; then
if [[ -f "$full_path" ]] && [[ $(get_hash "$full_path") == $sum ]]; then
logger INFO "'$file' is current"
else
logger WARN "File '$full_path' checksum '$cur_sum' != '$sum'"
curl -Ls "$url" > "$full_path/$file"
logger WARN "File '$full_path' checksum != '$sum'"
curl -Ls "$url" > "$full_path"
if [[ ! $? -eq 0 ]]; then
raise_error_and_quit "Failed to fetch the file '$file'. Possible timeout?"
fi