This is an automated email from the ASF dual-hosted git repository.
spacewander pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix.git
The following commit(s) were added to refs/heads/master by this push:
new 2fe7e3d0b fix(typo): Modify error message (#7475)
2fe7e3d0b is described below
commit 2fe7e3d0b9f05a2a9581bd0090bc6b941ce72fb8
Author: wangchengcheng <[email protected]>
AuthorDate: Sun Jul 17 20:04:59 2022 +0800
fix(typo): Modify error message (#7475)
---
apisix/cli/env.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apisix/cli/env.lua b/apisix/cli/env.lua
index 3c78ab3c1..f0e1a36e7 100644
--- a/apisix/cli/env.lua
+++ b/apisix/cli/env.lua
@@ -82,7 +82,7 @@ return function (apisix_home, pkg_cpath_org, pkg_path_org)
-- pre-transform openresty path
res, err = util.execute_cmd("command -v openresty")
if not res then
- error("failed to exec ulimit cmd \'command -v openresty\', err: " ..
err)
+ error("failed to exec cmd \'command -v openresty\', err: " .. err)
end
local openresty_path_abs = util.trim(res)