You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2021/08/13 08:19:19 UTC

[commons-rng] branch master updated: Delete site checkout in the clean phase

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

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git


The following commit(s) were added to refs/heads/master by this push:
     new 8246d5a  Delete site checkout in the clean phase
8246d5a is described below

commit 8246d5a526689440fcae11f11eaff59413ba738c
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Fri Aug 13 09:16:27 2021 +0100

    Delete site checkout in the clean phase
---
 pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 7a27025..166266d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -484,6 +484,11 @@ This is avoided by creating an empty directory when svn is not available.
     <profile>
       <!-- Allow the SVN site checkout to be removed in the clean phase. -->
       <id>clean-checkout</id>
+      <activation>
+        <file>
+          <exists>${commons.scmPubCheckoutDirectory}</exists>
+        </file>
+      </activation>
       <build>
         <plugins>
           <plugin>
@@ -499,7 +504,7 @@ This is avoided by creating an empty directory when svn is not available.
                 </goals>
                 <configuration>
                   <target name="remove-checkout">
-                    <delete dir="${commons.scmPubCheckoutDirectory}"/>
+                    <delete dir="${commons.scmPubCheckoutDirectory}" quiet="true"/>
                   </target>
                 </configuration>
               </execution>