You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2019/06/02 15:39:16 UTC

[lucene-solr] 01/05: SOLR-13452: Fix logging message.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch jira/SOLR-13452_gradle_3
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit f86da4b42e475a8db5f9c1d9a82ba4b8f82d1d4b
Author: markrmiller <ma...@apache.org>
AuthorDate: Sun Jun 2 02:49:41 2019 -0500

    SOLR-13452: Fix logging message.
---
 .../src/main/groovy/org/apache/lucene/gradle/PristineCheckout.groovy    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildSrc/src/main/groovy/org/apache/lucene/gradle/PristineCheckout.groovy b/buildSrc/src/main/groovy/org/apache/lucene/gradle/PristineCheckout.groovy
index 0f88f39..a1f9572 100644
--- a/buildSrc/src/main/groovy/org/apache/lucene/gradle/PristineCheckout.groovy
+++ b/buildSrc/src/main/groovy/org/apache/lucene/gradle/PristineCheckout.groovy
@@ -39,7 +39,7 @@ class PristineCheckout extends DefaultTask {
   @TaskAction
   void check() {
     try {
-      logger.info('Reseting working copy...')
+      logger.info('Cleaning working copy to pristine state...')
       final Repository repository = new FileRepositoryBuilder()
         .setWorkTree(project.getRootDir())
         .setMustExist(true)