From 5439a2c5c67b6e8bbd21210ad232a70d0b0db74e Mon Sep 17 00:00:00 2001 From: Mark Trolley Date: Mon, 8 Aug 2022 19:08:07 -0400 Subject: [PATCH] docs: fix script installation command on downloads page Script installation instructions in `downloads.md` differ from those in `install.md` and fail on MacOS. --- docs/content/downloads.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/downloads.md b/docs/content/downloads.md index 682937b44..f365dc9e5 100644 --- a/docs/content/downloads.md +++ b/docs/content/downloads.md @@ -28,11 +28,11 @@ You can also find a [mirror of the downloads on GitHub](https://github.com/rclon To install rclone on Linux/macOS/BSD systems, run: - curl https://rclone.org/install.sh | sudo bash + sudo -v ; curl https://rclone.org/install.sh | sudo bash For beta installation, run: - curl https://rclone.org/install.sh | sudo bash -s beta + sudo -v ; curl https://rclone.org/install.sh | sudo bash -s beta Note that this script checks the version of rclone installed first and won't re-download if not needed.