From 5259c2cc9d73ee794f35f7cff6af28c5649bd27d Mon Sep 17 00:00:00 2001 From: Opportunity Date: Mon, 30 Sep 2019 20:02:36 +0800 Subject: [PATCH] fix add --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 002ccb7..60d2235 100644 --- a/index.js +++ b/index.js @@ -31,7 +31,7 @@ async function download(sha) { console.log(folder) const repo = git(folder) await repo.init() - await repo.addRemote('origin', 'https://gitee.com/tboox/xmake.git'); + await repo.addRemote('origin', 'https://github.com/xmake-io/xmake.git'); await repo.fetch() await repo.checkout(sha) await repo.submoduleUpdate(['--init', '--recursive'])