summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2020-07-20 22:52:36 +0800
committerruki <[email protected]>2020-07-20 22:52:36 +0800
commit8aa0279fa83f1d90f4c853da316de4e54c3d33d7 (patch)
treea3ecfffe65a108a3322c19471f7d69ebeacd53c4
parent2361ee71528f1b1806af0ff41fb8a5af475862a3 (diff)
improve tips
-rw-r--r--xmake/rules/go/env/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/go/env/xmake.lua b/xmake/rules/go/env/xmake.lua
index 19272524e..c2c9ca4a0 100644
--- a/xmake/rules/go/env/xmake.lua
+++ b/xmake/rules/go/env/xmake.lua
@@ -31,7 +31,7 @@ rule("go.env")
local gopkgdir = path.join(goroot, "pkg", goos .. "_" .. goarch)
if not os.isdir(gopkgdir) or os.emptydir(gopkgdir) then
local gosrcdir = path.join(goroot, "src")
- local confirm = utils.confirm({default = true, description = ("we need build go for %s_%s first!"):format(goos, goarch)})
+ local confirm = utils.confirm({default = true, description = ("we need build go for %s_%s only once first!"):format(goos, goarch)})
if confirm then
local build_task = function ()
tty.erase_line_to_start().cr()