ant {ant} | R Documentation |
Apache Ant build tool
ant(run = TRUE, arguments = commandArgs(TRUE) )
run |
Should the generated command be run. |
arguments |
Additional arguments for the ant script |
This function makes a call to the R script ant.R
that
is in the exec
directory of this package
If run is TRUE
, this will return the result of the system call,
otherwise the command is returned.
Romain Francois <francoisromain@free.fr>
The Apache ant project: http://ant.apache.org/
## Not run: build.file <- system.file( "examples", "build.xml", package = "ant" ) owd <- setwd( dirname( build.file ) ) ant() setwd( owd ) ## End(Not run)