summaryrefslogtreecommitdiff
path: root/xmake/plugins/repo/main.lua
diff options
context:
space:
mode:
authorRoy Ivy III <[email protected]>2020-02-22 20:32:11 -0600
committerRoy Ivy III <[email protected]>2020-02-22 20:37:57 -0600
commitd76b2b96872e3860af34b3256bc1df2189835829 (patch)
treefe17b4bbc5b5105f2cdd0840fe1b6d17e2d9602f /xmake/plugins/repo/main.lua
parentf1a390e71d8c96ab005b01115e04ad109ea44d77 (diff)
change ~ remove unnecessary trailing `${clear}` from cprint()'s
Diffstat (limited to 'xmake/plugins/repo/main.lua')
-rw-r--r--xmake/plugins/repo/main.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/repo/main.lua b/xmake/plugins/repo/main.lua
index 5295728d1..e9162496d 100644
--- a/xmake/plugins/repo/main.lua
+++ b/xmake/plugins/repo/main.lua
@@ -49,7 +49,7 @@ function _add(name, url, branch, is_global)
end
-- trace
- cprint("${color.success}add %s repository(%s): %s%s ok!${clear}", ifelse(is_global, "global", "local"), name, url, branch and (" " .. branch) or "")
+ cprint("${color.success}add %s repository(%s): %s%s ok!", ifelse(is_global, "global", "local"), name, url, branch and (" " .. branch) or "")
-- leave environment
environment.leave()
@@ -156,7 +156,7 @@ function _clear(is_global)
end
-- trace
- cprint("${color.success}clear %s repositories: ok!${clear}", ifelse(is_global, "global", "local"))
+ cprint("${color.success}clear %s repositories: ok!", ifelse(is_global, "global", "local"))
end
-- list all repositories