Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 70be9fe

Browse files
authored
Merge pull request rclone#57 from Yexiaoxing/master
update: webui.sh
2 parents f9fe894 + 8275d70 commit 70be9fe

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The web-gui should now be available at the url http://localhost:5572
7373
**Bash users:**
7474

7575
Download the sh file given here:
76-
[webui.sh](https://raw.githubusercontent.com/negative0/rclone-webui-react/master/package.json)
76+
[webui.sh](https://raw.githubusercontent.com/rclone/rclone-webui-react/master/webui.sh)
7777

7878
Copy the file to root folder of rclone.
7979

@@ -118,7 +118,7 @@ Coming soon
118118

119119
### Get the Project
120120
```
121-
git clone https://github.com/negative0/rclone-webui-react
121+
git clone https://github.com/rclone/rclone-webui-react
122122
```
123123
OR download a zip from the option above.
124124

webui.sh

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
username='chaitanya'
2-
password='abcd'
1+
#!/bin/bash
2+
3+
username=''
4+
password=''
35

46
repoName='rclone-webui-react'
57

@@ -21,7 +23,7 @@ fi
2123

2224
if [[ -z "$password" ]]; then
2325
#statements
24-
echo "Please set password in webui.sh"
26+
echo "Please set password in the webui.sh"
2527
errors=$((errors + 1))
2628
fi
2729

@@ -41,7 +43,7 @@ if [[ "$command" == "get" ]]; then
4143
# Replace code to download the prebuilt version
4244
if [[ -n rclone-webui-react ]]; then
4345
#statements
44-
git clone https://github.com/negative0/"$repoName".git
46+
git clone https://github.com/rclone/"$repoName".git
4547
fi
4648
fi
4749

0 commit comments

Comments
 (0)