mirror of
https://github.com/rclone/rclone.git
synced 2024-12-23 23:49:15 +01:00
install: Pre verify sudo authorization "-v" before calling curl.
The way this was, the curl interferes with the bash invocation. Here it will authenticate first.
This commit is contained in:
parent
6f91198b57
commit
0ba702ccf4
@ -26,11 +26,11 @@ using the [rclone selfupdate](/commands/rclone_selfupdate/) command.
|
|||||||
|
|
||||||
To install rclone on Linux/macOS/BSD systems, run:
|
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:
|
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
|
Note that this script checks the version of rclone installed first and
|
||||||
won't re-download if not needed.
|
won't re-download if not needed.
|
||||||
|
@ -12,7 +12,7 @@ set -e
|
|||||||
#when adding a tool to the list make sure to also add its corresponding command further in the script
|
#when adding a tool to the list make sure to also add its corresponding command further in the script
|
||||||
unzip_tools_list=('unzip' '7z' 'busybox')
|
unzip_tools_list=('unzip' '7z' 'busybox')
|
||||||
|
|
||||||
usage() { echo "Usage: curl https://rclone.org/install.sh | sudo bash [-s beta]" 1>&2; exit 1; }
|
usage() { echo "Usage: sudo -v ; curl https://rclone.org/install.sh | sudo bash [-s beta]" 1>&2; exit 1; }
|
||||||
|
|
||||||
#check for beta flag
|
#check for beta flag
|
||||||
if [ -n "$1" ] && [ "$1" != "beta" ]; then
|
if [ -n "$1" ] && [ "$1" != "beta" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user