You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@htrace.apache.org by st...@apache.org on 2015/01/10 01:13:08 UTC

incubator-htrace git commit: HTRACE-64 Fix mvn clean of go directories

Repository: incubator-htrace
Updated Branches:
  refs/heads/master 6bb42f424 -> 92c0bc22e


HTRACE-64 Fix mvn clean of go directories


Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/92c0bc22
Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/92c0bc22
Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/92c0bc22

Branch: refs/heads/master
Commit: 92c0bc22e093d5688c0de411bd83e0fa4e483506
Parents: 6bb42f4
Author: stack <st...@duboce.net>
Authored: Fri Jan 9 16:12:58 2015 -0800
Committer: stack <st...@duboce.net>
Committed: Fri Jan 9 16:12:58 2015 -0800

----------------------------------------------------------------------
 htrace-core/pom.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/92c0bc22/htrace-core/pom.xml
----------------------------------------------------------------------
diff --git a/htrace-core/pom.xml b/htrace-core/pom.xml
index 2c2b85e..86bc920 100644
--- a/htrace-core/pom.xml
+++ b/htrace-core/pom.xml
@@ -114,9 +114,10 @@ language governing permissions and limitations under the License. -->
                   <arg value="-c"/>
                   <arg value="./gobuild.sh clean"/>
                 </exec>
-                <exec executable="bash" failonerror="true" dir="${basedir}/src/go">
-                  <arg value="-c"/>
-                  <arg value="rm -f ./bin/*"/>
+                <exec executable="git" failonerror="true" dir="${basedir}/src/go">
+                  <arg value="clean"/>
+                  <arg value="-ffqdx"/>
+                  <arg value="."/>
                 </exec>
               </tasks>
             </configuration>