add import-asset rule
All checks were successful
Linux arm64 / Build (push) Successful in 34s

This commit is contained in:
2024-08-13 19:57:27 +02:00
parent daf382e35e
commit 1c855d1b77
2 changed files with 29 additions and 7 deletions

View File

@@ -41,8 +41,9 @@ target(PROJECT_NAME)
on_run(
(function(godot_project_folder)
return function(target)
os.execv("echo", {"godot --path", godot_project_folder})
os.exec("godot --path " .. godot_project_folder)
local cmd = format("godot --path %s", godot_project_folder)
os.execv("echo", {cmd})
os.exec(cmd)
end
end)(GODOT_PROJECT_FOLDER)
)