summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérôme Leclercq <[email protected]>2022-06-08 08:44:12 +0200
committerGitHub <[email protected]>2022-06-08 08:44:12 +0200
commit5877844490e23a1a71062256fdc1b1f56df54177 (patch)
tree8534230bcc4fac856e16c3d593dabdb62cb186d0
parente88adaae9e4adb3e232d84d0e38de5c0b8af80a5 (diff)
Update install_packages.lua
-rw-r--r--xmake/modules/private/action/require/impl/install_packages.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/modules/private/action/require/impl/install_packages.lua b/xmake/modules/private/action/require/impl/install_packages.lua
index d9fb2a8fa..e2e0870f5 100644
--- a/xmake/modules/private/action/require/impl/install_packages.lua
+++ b/xmake/modules/private/action/require/impl/install_packages.lua
@@ -695,7 +695,7 @@ function main(requires, opt)
local has_errors = false
- -- exists unknwon packages?
+ -- exists unknown packages?
if #packages_unknown > 0 then
cprint("${bright color.warning}note: ${clear}the following packages were not found in any repository (check if they are spelled correctly):")
for _, instance in ipairs(packages_unknown) do
@@ -706,7 +706,7 @@ function main(requires, opt)
-- exists unsupported packages?
if #packages_unsupported > 0 then
- cprint("${bright color.warning}note: ${clear}the following packages are unsupported for $(plat)/$(arch):")
+ cprint("${bright color.warning}note: ${clear}the following packages are unsupported on $(plat)/$(arch):")
for _, instance in ipairs(packages_unsupported) do
print(" -> %s %s", instance:displayname(), instance:version_str() or "")
end
@@ -715,7 +715,7 @@ function main(requires, opt)
-- exists not found packages?
if #packages_not_found > 0 then
- cprint("${bright color.warning}note: ${clear}the following packages were not found for $(plat)/$(arch):")
+ cprint("${bright color.warning}note: ${clear}the following packages were not found on your system, try again after installing them:")
for _, instance in ipairs(packages_not_found) do
print(" -> %s %s", instance:displayname(), instance:version_str() or "")
end