summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()