From 8c68a76a4aaeac4a24dcca0b49301e47347f4bed Mon Sep 17 00:00:00 2001 From: Ashok Gelal <401055+ashokgelal@users.noreply.github.com> Date: Mon, 12 Apr 2021 09:18:29 -0400 Subject: [PATCH] install.sh: silence the progress output with curl requests This commit silences the progress output from the curl requests made by the install.sh script. Having a progress seems to break some automated scripts and there isn't a way to pass some flags to these curl requests to disable them. --- docs/content/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/install.sh b/docs/content/install.sh index 066fd26f0..3294c1563 100755 --- a/docs/content/install.sh +++ b/docs/content/install.sh @@ -53,9 +53,9 @@ export XDG_CONFIG_HOME=config #check installed version of rclone to determine if update is necessary version=$(rclone --version 2>>errors | head -n 1) if [ -z "$install_beta" ]; then - current_version=$(curl -f https://downloads.rclone.org/version.txt) + current_version=$(curl -fsS https://downloads.rclone.org/version.txt) else - current_version=$(curl -f https://beta.rclone.org/version.txt) + current_version=$(curl -fsS https://beta.rclone.org/version.txt) fi if [ "$version" = "$current_version" ]; then @@ -123,7 +123,7 @@ else rclone_zip="rclone-beta-latest-${OS}-${OS_type}.zip" fi -curl -Of "$download_link" +curl -OfsS "$download_link" unzip_dir="tmp_unzip_dir_for_rclone" # there should be an entry in this switch for each element of unzip_tools_list case "$unzip_tool" in