summaryrefslogtreecommitdiff
path: root/xmake/actions/run/main.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-05-26 00:19:45 +0800
committerruki <[email protected]>2020-05-25 19:58:33 +0800
commit05b37be8865ff1af2051766a835e7576a6780e55 (patch)
tree20fca70ddb0897c30f5c2c7ece81575f51e16eb1 /xmake/actions/run/main.lua
parent364d1242536594a954841ed2246ca1c447e9d0b2 (diff)
improve to run xcode app
Diffstat (limited to 'xmake/actions/run/main.lua')
-rw-r--r--xmake/actions/run/main.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake/actions/run/main.lua b/xmake/actions/run/main.lua
index c04c5c8b9..5ec64950a 100644
--- a/xmake/actions/run/main.lua
+++ b/xmake/actions/run/main.lua
@@ -59,6 +59,7 @@ function _do_run_target(target)
if option.get("debug") then
debugger.run(targetfile, option.get("arguments"))
else
+ print(targetfile)
os.execv(targetfile, option.get("arguments"))
end