diff options
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | xmake/actions/update/main.lua | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 90aacdc5c..7e4074cc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ ### Changes * Improve to switch version and debug mode for the dependent packages +* [#264](https://github.com/tboox/xmake/issues/264): Support `xmake update dev` on windows ### Bugs fixed @@ -542,6 +543,7 @@ ### 改进 * 针对远程依赖包,改进版本和调试模式切换 +* [#264](https://github.com/tboox/xmake/issues/264): 支持在windows上更新dev/master版本,`xmake update dev` ### Bugs修复 diff --git a/xmake/actions/update/main.lua b/xmake/actions/update/main.lua index d50b3fc90..8c7993204 100644 --- a/xmake/actions/update/main.lua +++ b/xmake/actions/update/main.lua @@ -276,7 +276,7 @@ function main() local sourcedir = path.join(os.tmpdir(), "xmakesrc", version) local download_task = function () for idx, url in ipairs(mainurls) do - cprintf("\r${yellow} => ${clear}clone %s .. ", url) + cprintf("\r${yellow} => ${clear}downloading %s .. ", url) local ok = try { function () |
