summaryrefslogtreecommitdiff
path: root/scripts/get.ps1
diff options
context:
space:
mode:
authorruki <[email protected]>2019-02-08 23:32:30 +0800
committerruki <[email protected]>2019-02-08 15:15:05 +0800
commit04f4888bf721d9d78b0feb56c392122966a36a4e (patch)
tree7f21056ae40f4e0734bd4b77eb8372f5150959fd /scripts/get.ps1
parent7f5f3b0c1b8ffba6fed1e96fa30fcb5be3defa39 (diff)
update xmake github url
Diffstat (limited to 'scripts/get.ps1')
-rw-r--r--scripts/get.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/get.ps1 b/scripts/get.ps1
index 5743792e9..0612719e8 100644
--- a/scripts/get.ps1
+++ b/scripts/get.ps1
@@ -47,9 +47,9 @@ try{
writeErrorTip 'Please set environment var "TMP" to another path'
myExit 1
}
-Write-Host "Start downloading https://github.com/tboox/xmake/releases/download/$version/xmake-$branch.exe .."
+Write-Host "Start downloading https://github.com/xmake-io/xmake/releases/download/$version/xmake-$branch.exe .."
try{
- Invoke-Webrequest "https://github.com/tboox/xmake/releases/download/$version/xmake-$branch.exe" -OutFile "$outfile"
+ Invoke-Webrequest "https://github.com/xmake-io/xmake/releases/download/$version/xmake-$branch.exe" -OutFile "$outfile"
}catch{
writeErrorTip 'Download failed!'
writeErrorTip 'Check your network or... the news of S3 break'
@@ -80,7 +80,7 @@ try{
Write-Host "Pulling xmake from branch $branch"
$outfile=$temppath+"\$pid-xmake-repo.zip"
try{
- Invoke-Webrequest "https://github.com/tboox/xmake/archive/$branch.zip" -OutFile "$outfile"
+ Invoke-Webrequest "https://github.com/xmake-io/xmake/archive/$branch.zip" -OutFile "$outfile"
}catch{
writeErrorTip 'Pull Failed!'
writeErrorTip 'xmake is now available but may not be newest'