summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
authorruki <[email protected]>2021-01-15 00:18:12 +0800
committerruki <[email protected]>2021-01-15 00:18:12 +0800
commit36e9370b50ed50d65f843a4a46afce1ad0ad2fbe (patch)
tree6bc29cda2629ff6c8a24966b81507f693f992861 /xmake/modules
parent6f2c3e2543890c4b4e0d910eb93cbd26d5b4020f (diff)
improve install tips
Diffstat (limited to 'xmake/modules')
-rw-r--r--xmake/modules/target/action/install/main.lua2
-rw-r--r--xmake/modules/target/action/uninstall/main.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/target/action/install/main.lua b/xmake/modules/target/action/install/main.lua
index 3754b71af..5d385ec49 100644
--- a/xmake/modules/target/action/install/main.lua
+++ b/xmake/modules/target/action/install/main.lua
@@ -44,7 +44,7 @@ function main(target, opt)
end
-- trace
- print("installing to %s ..", installdir)
+ print("installing %s to %s ..", target:name(), installdir)
-- call script
if not target:isphony() then
diff --git a/xmake/modules/target/action/uninstall/main.lua b/xmake/modules/target/action/uninstall/main.lua
index ebf7d07c9..bb84d811c 100644
--- a/xmake/modules/target/action/uninstall/main.lua
+++ b/xmake/modules/target/action/uninstall/main.lua
@@ -36,7 +36,7 @@ function main(target, opt)
end
-- trace
- print("uninstalling from %s ..", installdir)
+ print("uninstalling %s from %s ..", target:name(), installdir)
-- call script
if not target:isphony() then