-
|
I am doing integration testing via a python script which calls I have worked around this by replacing Is there a better way to resolve this? What I am really trying to do is resolve |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I seem to have duck-debugged my way onto a decent solution: function copy_latest(target)
destination = 'build/latest/'
os.mkdir(destination)
os.cp(target:targetfile(), destination)
end
target('app')
...
after_build(copy_latest)This way instead of resolving |
Beta Was this translation helpful? Give feedback.
I seem to have duck-debugged my way onto a decent solution:
This way instead of resolving
build/$plat/$arch/$mode/appI can just runbuild/latest/app. Also handy when manually running from command line.