Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update _Events.groovy #121

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update _Events.groovy
Grails 2.5.2 test build does not allow declaration of "private" in this instance.
  • Loading branch information
gus-diaz committed Nov 12, 2015
commit cd6d91f09e3bb428ddeafea2544994db68cd4ad5
4 changes: 2 additions & 2 deletions scripts/_Events.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ eventAllTestsStart = {
}
}

private determineGitRevisionNumber = {
def determineGitRevisionNumber = {
String revisionNumber = 'dev'
try {
revisionNumber = 'git describe --match v* --always'.execute().text.trim()
Expand Down Expand Up @@ -119,4 +119,4 @@ eventCompileEnd = {
ant.copy(todir:classesDirPath) {
fileset(file:"${basedir}/grails-app/conf/clickstream.xml")
}
}
}