summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/modules')
-rw-r--r--xmake/modules/private/xrepo/main.lua2
-rw-r--r--xmake/modules/utils/wdk/testcert.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/xmake/modules/private/xrepo/main.lua b/xmake/modules/private/xrepo/main.lua
index 986860fab..61d69c0d4 100644
--- a/xmake/modules/private/xrepo/main.lua
+++ b/xmake/modules/private/xrepo/main.lua
@@ -29,7 +29,7 @@ function _show_version()
cprint("${bright}xRepo %s/xmake, A cross-platform C/C++ package manager based on Xmake.", xmake.version())
-- show copyright
- cprint("Copyright (C) 2015-present Ruki Wang, ${underline}tboox.org${clear}, ${underline}xmake.io${clear}")
+ cprint("Copyright (C) 2015-present Ruki Wang, ${underline}https://xmake.io${clear}")
print("")
-- show logo
diff --git a/xmake/modules/utils/wdk/testcert.lua b/xmake/modules/utils/wdk/testcert.lua
index 696533efe..59c144f5b 100644
--- a/xmake/modules/utils/wdk/testcert.lua
+++ b/xmake/modules/utils/wdk/testcert.lua
@@ -62,7 +62,7 @@ function _install(wdk)
if not os.isfile(tmpfile) then
os.cp(os.programfile(), tmpfile)
end
- os.vrunv(signtool, {"sign", "/v", "/a", "/s", "PrivateCertStore", "/n", "tboox.org(test)", tmpfile})
+ os.vrunv(signtool, {"sign", "/v", "/a", "/s", "PrivateCertStore", "/n", "xmake.io(test)", tmpfile})
return true
end
}
@@ -78,7 +78,7 @@ function _install(wdk)
-- get a test certificate
local testcer = path.join(global.directory(), "sign", "test.cer")
- local company = "tboox.org(test)"
+ local company = "xmake.io(test)"
-- make a new test certificate @note need re-generate certificate when reinstalling
local signdir = path.directory(testcer)