diff options
| author | ruki <[email protected]> | 2022-12-22 10:29:20 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-22 10:29:20 +0800 |
| commit | f0dfa7d545edd4e7c7e019d12566e3e4720e1dd1 (patch) | |
| tree | 6b9d2a1a60c1ef169db314d0aaa25c5c95d61234 | |
| parent | 269047df839c91e401c1fa01f0468b7fdc5c6869 (diff) | |
| parent | 039082a104f7fbea1fa1d2cc492d24703130f9cb (diff) | |
Merge pull request #3190 from SirLynix/patch-12
Improve error message
| -rw-r--r-- | xmake/modules/private/action/require/impl/environment.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/action/require/impl/environment.lua b/xmake/modules/private/action/require/impl/environment.lua index bf878876b..aa44dcefe 100644 --- a/xmake/modules/private/action/require/impl/environment.lua +++ b/xmake/modules/private/action/require/impl/environment.lua @@ -34,7 +34,7 @@ function enter() -- unzip or 7zip is necessary if not find_tool("unzip") and not find_tool("7z") then - raise("unzip or 7zip not found! we need install it first") + raise("failed to find unzip or 7zip! please install one of them first") end -- enter the environments of git |
