public void execute() throws BuildException {
if (dir == null) {
throw new BuildException("dir is null");
}
try {
new Provision(work(), new VBox(context(), dir.toURI()), Collections.<String>singleton("*")).call();
} catch (Exception e) {
throw new BuildException(e);
}
}