Skip to content

Commit

Permalink
Update rcupdate
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDoobPG authored and MrDoobPG committed Sep 8, 2019
1 parent b71dc36 commit 6e27efb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions menu/alias/templates/rcupdate
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ rcupdate=$(tail -n 1 /var/plexguide/checkers/rclone.log)
tee <<-EOF
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
rClone Update Panel $rcupdate
rClone Update Panel $rcupdate
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
rclone installed version = $rcstored
rclone latest version = $rcversion
[1] UPDATE to lateste version
[Y] UPDATE to lateste version
[Z] Exit
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
EOF

read -p 'Type a Number | Press [ENTER]: ' typed </dev/tty

if [[ "$typed" == "1" ]]; then
if [[ "$typed" == "Y" || "y" ]]; then
curl https://rclone.org/install.sh | sudo bash
else [[ "$typed" == "Z" || "$typed" == "z" ]]

Expand Down

0 comments on commit 6e27efb

Please sign in to comment.