summaryrefslogtreecommitdiff
path: root/xmake/packages/git/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-09-27 23:34:34 +0800
committerruki <[email protected]>2017-09-27 15:27:28 +0800
commit4c93ae675580410bfb29364d457e129ddd6e0f8d (patch)
tree36b180073ca4dc8114db30d964355be3bcac15af /xmake/packages/git/xmake.lua
parent38af0b9255ee4c20ee73a62293d73c6bfaca19f7 (diff)
fix git mirror urls
Diffstat (limited to 'xmake/packages/git/xmake.lua')
-rw-r--r--xmake/packages/git/xmake.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmake/packages/git/xmake.lua b/xmake/packages/git/xmake.lua
index 5c7bfbfe9..8fc382ea3 100644
--- a/xmake/packages/git/xmake.lua
+++ b/xmake/packages/git/xmake.lua
@@ -7,15 +7,15 @@ package("git")
if os.host() == "windows" then
if os.arch() == "x64" then
--- add_urls("https://coding.net/u/waruqi/p/xmake-win64env/git/archive/$(version).zip", {alias = "coding"})
- add_urls("https://github.com/tboox/xmake-win64env/archive/$(version).zip", {alias = "github"})
--- add_sha256s("[email protected]", "1071c5e43613ff591bad7f5ad90fe1621a070cf20c56f06d5177e095f88c9a74")
- add_sha256s("[email protected]", "95170b1d144ebb30961611fd87b1e9404bbe37d2d904adb15f3e202bb3e19c21")
+ add_urls("https://gitee.com/tboox/xmake-winenv/raw/master/win64/$(version).zip")
+ add_urls("https://coding.net/u/waruqi/p/xmake-winenv/git/raw/master/win64/$(version).zip")
+ add_urls("https://github.com/tboox/xmake-win64env/archive/$(version).zip")
+ add_sha256s("v1.0.1", "95170b1d144ebb30961611fd87b1e9404bbe37d2d904adb15f3e202bb3e19c21")
else
--- add_urls("https://coding.net/u/waruqi/p/xmake-win32env/git/archive/$(version).zip", {alias = "coding"})
- add_urls("https://github.com/tboox/xmake-win32env/archive/$(version).zip", {alias = "github"})
--- add_sha256s("[email protected]", "de8623309f956619f70a8681201ecacfb99b7694070b63c4d53756de8855697e")
- add_sha256s("[email protected]", "3c46983379329a246596a2b5f0ff971b55e3eccbbfd34272e7121e13fb346db5")
+ add_urls("https://gitee.com/tboox/xmake-winenv/raw/master/win32/$(version).zip")
+ add_urls("https://coding.net/u/waruqi/p/xmake-winenv/git/raw/master/win32/$(version).zip")
+ add_urls("https://github.com/tboox/xmake-win32env/archive/$(version).zip")
+ add_sha256s("v1.0.1", "3c46983379329a246596a2b5f0ff971b55e3eccbbfd34272e7121e13fb346db5")
end
else
add_imports("package.manager.install")