fix: Remove non-existent filename variable

This commit is contained in:
Andrey Petelin
2025-09-11 17:01:39 +05:00
parent 3d3fbe3bfb
commit 8dd33cdde2

View File

@@ -248,7 +248,7 @@ download_to_file() {
done
if grep -q $'\r' "$filepath"; then
log "$filename has Windows line endings (CRLF). Converting to Unix (LF)"
log "Downloaded file has Windows line endings (CRLF). Converting to Unix (LF)"
sed -i 's/\r$//' "$filepath"
fi
}