Namanyay Goel
Namanyay Goel

Reputation: 2660

How do I use html5bolierplate build script?

Okay, so.

  1. I've installed Ant.
  2. Downloaded the build script. Extracted to Ant installation location.

When I run the 'runbuildscript' a cmd interface opens for around a second, and stops.

If I navigate to the location of files through CMD, then do ant minify it doesn't work.

I then thought to place and extract the build script in the location of the files.

Upon doing so, an error came -

BUILD FAILED
E:\NamanyayG\wamp\www\namanyayg\build.xml:150: The following error occurred whil
e executing this line:
E:\NamanyayG\wamp\www\namanyayg\build.xml:416: E:\NamanyayG\wamp\www\${dir.source} does    not exist.

Please help me out, I'm thoroughly confused.

Upvotes: 0

Views: 141

Answers (1)

Alexander Pogrebnyak
Alexander Pogrebnyak

Reputation: 45576

Build script expects some external process (in this case you) to set dir.source property.

The most sure way to set it is to define it on ant command line, e.g.

ant -Ddir.source=/path/to/dir.source

Upvotes: 1

Related Questions