I'm trying to use a relative path in the -output compiler argument, here's what I've tried (with and without quotes):
-o="./deploy/file.swf"
-o="/./deploy/file.swf"
-o="./file.swf"
-o="/./file.swf"
-o="file.swf"
-o="file.swf"
None of these attempts yields a new file, it's as if they are ignored. The depl开发者_如何学JAVAoy directory is in the root of my project directory. If I use an absolute path, it works great, but the project is less portable. Any help is greatly appreciated. Thanks in advance.
Not a good answer, but ANT allows you to create absolute paths from relative ones.
精彩评论