diff --git a/dzgui.sh b/dzgui.sh index 47db67d..c9bd89d 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -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