liquibase.rollback(rollbackTag, new Contexts(getContexts()), getLabels());
}
} else if(rollbackDate != null) {
if(outputFile != null) {
writer = getOutputFileWriter();
liquibase.rollback(rollbackDate, new Contexts(getContexts()), getLabels(), writer);
} else {
liquibase.rollback(rollbackDate, new Contexts(getContexts()), getLabels());
}
} else {
throw new BuildException("Unable to rollback database. No count, tag, or date set.");