srbs/textmate-to-sublime-converter

Examples Build Fails

ryanfitzer opened this issue · 3 comments

Not able to get the examples/tm2subl to build. Running ant build.xml in the examples/tm2subl directory throws the following error:

BUILD FAILED
Target "build.xml" does not exist in the project "Textmate bundle to Sublime Text package transformer".

OSX 10.6.8, Ant 1.8.4, Java 1.6.0_43. Any ideas?

srbs commented

You only need to run ant the build.xml file is default.
If you want to pass in the build file, use ant -f build.xml.

ant build.xml tried to run the target "build.xml" in the default build script (build.xml).

See the ant manual for more information.

Ah! Thanks. I'm new to Ant.

On Mar 8, 2013, at 10:35 PM, srbs notifications@github.com wrote:

You only need to run ant the build.xml file is default.
If you want to pass in the build file, use ant -f build.xml.

ant build.xml tried to run the target "build.xml" in the default build script (build.xml).

See the ant manual for more information.


Reply to this email directly or view it on GitHub.

srbs commented

No problem.