Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6124059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:05:21+00:00 2026-05-23T16:05:21+00:00

I have an Ant project that uses a bit of Coffee Script. I would

  • 0

I have an Ant project that uses a bit of Coffee Script. I would like Ant to compile all of the coffee instead of having another build step to compile it. The coffee command line script that I want to use, that compiles all coffee files into synonomous js files (site.coffee compiles to site.js, app.coffee compiles to app.js):

coffee -c ./js/*.coffee

I created an Ant task that I assumed would run the same command, but am getting an error:

<target name="compilecoffee" description="Compiles coffeescript files">
    <exec executable="coffee">
        <arg value="-c ${env.WORKSPACE}js/*.coffee" />
    </exec>
</target>

Now when I run ant compilecoffee -Denv.WORKSPACE=./ I get the following error from Coffee:

Buildfile: /Users/dave/Workspace/ColdFusion/Mura-Themes/e123-1/build.xml

compilecoffee:
     [exec] 
     [exec] node.js:116
     [exec]         throw e; // process.nextTick error, or 'error' event on first tick
     [exec]         ^
     [exec] Error: unrecognized option: -c ./js/3_site.coffee
     [exec]     at OptionParser.parse (/Users/dave/local/lib/node/.npm/coffee-script/1.1.1/package/lib/optparse.js:34:17)
     [exec]     at /Users/dave/local/lib/node/.npm/coffee-script/1.1.1/package/lib/command.js:245:29
     [exec]     at Object.run (/Users/dave/local/lib/node/.npm/coffee-script/1.1.1/package/lib/command.js:24:5)
     [exec]     at Object.<anonymous> (/Users/dave/local/lib/node/.npm/coffee-script/1.1.1/package/bin/coffee:7:27)
     [exec]     at Module._compile (module.js:373:26)
     [exec]     at Object..js (module.js:379:10)
     [exec]     at Module.load (module.js:305:31)
     [exec]     at Function._load (module.js:271:10)
     [exec]     at Array.<anonymous> (module.js:392:10)
     [exec]     at EventEmitter._tickCallback (node.js:108:26)
     [exec] Result: 1

If I run, what I thought was, the coffee equivelant directly at the command line (coffee -c ./js/*.coffee) I get no errors and everything works as expected. Am I using the exec target wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T16:05:21+00:00Added an answer on May 23, 2026 at 4:05 pm

    try =

    <arg line="-c ${env.WORKSPACE}js/*.coffee" />
    

    or use one arg value=… for every part of the command

    <target name="compilecoffee" description="Compiles coffeescript files">
     <exec executable="coffee">
      <arg value="-c"/>
      <arg value="${env.WORKSPACE}js/*.coffee" />
     </exec>
    </target>
    

    coffee executable has to be on path or use =

    <exec executable="full/path/to/coffee">
    

    EDIT

    as Dominic pointed out, the ‘*’ won’t be expanded, so you should use apply =

     <apply executable="coffee">
      <arg value="-c"/>
      <fileset dir="${env.WORKSPACE}js" includes="**/*.js"/>
     </apply>
    

    see Ant Manual apply task f.e. you may use parallel=”true”, means run the command only once, appending all files as arguments, if possible with coffee, to speed it up.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a project that uses TestNG and ant. I would like
I have a Java project that I build using an Ant script. I am
I have a ant build script that uses a build.properties file. There I have
I have a project that contains xml files. I also have an Ant build
I have an ant target that echo's the content of an eclipse .project file,
I have a bunch of ant projects that build plug-ins that all conform to
I have an ant script with the following header: <project name=Simple ActiveJDBC Example default=clean
I have an Ant script that performs a copy operation using the 'copy' task
I have an ant build script that needs to pull files down from a
I have a project that uses a third party library in the form of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.