Skip to content

Commit a2d7f4a

Browse files
committed
Updated to rclone 1.37
1 parent 732b928 commit a2d7f4a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ If `REMOVE_LOCAL_FILES_BASED_ON` is set to **space** it will only remove content
157157
![UML diagram](uml.png)
158158

159159
## Rclone
160-
Rclone 1.36 is currently used and tested.
160+
Rclone 1.37 is currently used and tested.
161161

162162
Rclone is used to encrypt, decrypt and upload files to the cloud. It mounts and decrypts Plexdrive to a different folder (`/cloud-decrypt`) and later encrypts and uploads from a local folder (`/local-decrypt`) to the cloud.
163163

install.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#!/bin/bash
22
# Rclone variables
3-
rclone_url="https://github.com/ncw/rclone/releases/download/v1.36/rclone-v1.36-linux-amd64.zip"
4-
rclone_zip="rclone-v1.36-linux-amd64.zip"
5-
rclone_dir="rclone-v1.36-linux-amd64"
3+
rclone_release="rclone-v1.37-linux-amd64"
4+
rclone_zip="${rclone_release}.zip"
5+
rclone_url="https://github.com/ncw/rclone/releases/download/v1.37/${rclone_zip}"
66
# Plexdrive variables
7-
plexdrive_url="https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/plexdrive-linux-amd64"
87
plexdrive_bin="plexdrive-linux-amd64"
8+
plexdrive_url="https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/${plexdrive_bin}"
99
# Rclone
1010
wget "$rclone_url"
1111
unzip "$rclone_zip"
12-
chmod a+x "${rclone_dir}/rclone"
13-
cp -rf "${rclone_dir}/rclone" "/usr/local/bin/rclone"
12+
chmod a+x "${rclone_release}/rclone"
13+
cp -rf "${rclone_release}/rclone" "/usr/local/bin/rclone"
1414
rm -rf "$rclone_zip"
15-
rm -rf "$rclone_dir"
15+
rm -rf "$rclone_release"
1616
# Plexdrive
1717
wget "$plexdrive_url"
1818
chmod a+x "$plexdrive_bin"

0 commit comments

Comments
 (0)