summaryrefslogtreecommitdiff
path: root/xmake/plugins/pack/deb/main.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2024-06-15 21:06:23 +0800
committerruki <[email protected]>2024-06-15 21:06:23 +0800
commitc72c18a4acc057a551a35a4e2fe29fc50c2af2b3 (patch)
treedbdc7974d47af5c1abab761488b68582fbe996c4 /xmake/plugins/pack/deb/main.lua
parent3a6a8eb2ec47e48793cb0eeb6ad6a39add834ae0 (diff)
improve assert msg
Diffstat (limited to 'xmake/plugins/pack/deb/main.lua')
-rw-r--r--xmake/plugins/pack/deb/main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/pack/deb/main.lua b/xmake/plugins/pack/deb/main.lua
index 680531ff6..e9a72f24b 100644
--- a/xmake/plugins/pack/deb/main.lua
+++ b/xmake/plugins/pack/deb/main.lua
@@ -30,7 +30,7 @@ import(".batchcmds")
-- get the debuild
function _get_debuild()
local debuild = find_tool("debuild", {force = true})
- assert(debuild, "debuild not found!")
+ assert(debuild, "debuild not found, please run `sudo apt install devscripts` to install it!")
return debuild
end