summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2017-06-01 15:07:34 +0800
committerruki <[email protected]>2017-06-01 15:07:40 +0800
commit6ac56a31d36fb151e50f7158da12d56f32a2e2aa (patch)
treedabebdf8f4c65f3d2c163cd9b82d486142bd3da6
parent1487365baaaf7d630356e0ac57048157b4fa5623 (diff)
improve get.sh url in docs
-rw-r--r--docs/README.md6
-rw-r--r--docs/zh/README.md6
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/README.md b/docs/README.md
index 24857daa2..1b148d6ae 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -22,19 +22,19 @@ so that any developer can quickly pick it up and enjoy the productivity boost wh
##### via curl
```bash
-$ bash <(curl -fsSL https://github.com/tboox/xmake/raw/master/scripts/get.sh)
+$ bash <(curl -fsSL http://xmake.io/get.sh)
```
##### via wget
```bash
-$ bash <(wget https://github.com/tboox/xmake/raw/master/scripts/get.sh -O -)
+$ bash <(wget http://xmake.io/get.sh -O -)
```
##### via powershell
```bash
-$ Invoke-Expression (Invoke-Webrequest 'https://raw.githubusercontent.com/tboox/xmake/master/scripts/get.ps1' -UseBasicParsing).Content
+$ Invoke-Expression (Invoke-Webrequest 'http://xmake.io/get.ps1' -UseBasicParsing).Content
```
#### Windows
diff --git a/docs/zh/README.md b/docs/zh/README.md
index 972ac8476..e0b7db61f 100644
--- a/docs/zh/README.md
+++ b/docs/zh/README.md
@@ -29,19 +29,19 @@ xmake的目标是开发者更加关注于项目本身开发,简化项目的描
##### 使用curl
```bash
-$ bash <(curl -fsSL https://github.com/tboox/xmake/raw/master/scripts/get.sh)
+$ bash <(curl -fsSL http://xmake.io/get.sh)
```
##### 使用wget
```bash
-$ bash <(wget https://github.com/tboox/xmake/raw/master/scripts/get.sh -O -)
+$ bash <(wget http://xmake.io/get.sh -O -)
```
##### 使用powershell
```bash
-$ Invoke-Expression (Invoke-Webrequest 'https://github.com/tboox/xmake/raw/master/scripts/get.ps1' -UseBasicParsing).Content
+$ Invoke-Expression (Invoke-Webrequest 'http://xmake.io/get.ps1' -UseBasicParsing).Content
```
#### Windows