docs: fix script installation command on downloads page

Script installation instructions in `downloads.md` differ from those in
`install.md` and fail on MacOS.
This commit is contained in:
Mark Trolley 2022-08-08 19:08:07 -04:00 committed by Nick Craig-Wood
parent d347ac0154
commit 5439a2c5c6
1 changed files with 2 additions and 2 deletions

View File

@ -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.