xn

Results 1 comments of xn

修改下脚本的 download 函数,展示真正的下载进度,其实就是在下载,原来的下载函数展示进度错误 ``` fun_download_file(){ if [ ! -s "${str_program_dir}/${program_name}" ]; then rm -fr "${program_latest_filename}" "frp_${FRPS_VER}_linux_${ARCHS}" # 修复1:移除进度管道 echo -e "Downloading ${program_name}..." curl -L --progress-bar "${program_latest_file_url}" -o "${program_latest_filename}" || {...