summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2011-12-08 09:27:21 -0500
committerJosh Suereth <joshua.suereth@gmail.com>2011-12-08 09:27:21 -0500
commit6a16e1a4fc08fd47b19c32c19106e6405160e1c4 (patch)
tree145bd67cf206e8f59a35a487bdf0e0204d47ecb9 /build.xml
parentfd95db6b12f53bb54a446c3d8e27d991989b874b (diff)
downloadscala-6a16e1a4fc08fd47b19c32c19106e6405160e1c4.tar.gz
scala-6a16e1a4fc08fd47b19c32c19106e6405160e1c4.tar.bz2
scala-6a16e1a4fc08fd47b19c32c19106e6405160e1c4.zip
Ensure sha files don't go to production
This commit filters out the sha files that have been going into the docs area of a distribution. Really, I think examples might belong in a separate project moreso than in the distro, but for now just preventing the build information from leaking into the distro is helpful. Review by: @soundrabbit
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 6a708755a3..e02a33bed2 100644
--- a/build.xml
+++ b/build.xml
@@ -1688,7 +1688,9 @@ DISTRIBUTION
</copy>
<mkdir dir="${dist.dir}/doc/scala-devel-docs/examples"/>
<copy toDir="${dist.dir}/doc/scala-devel-docs/examples">
- <fileset dir="${docs.dir}/examples"/>
+ <fileset dir="${docs.dir}/examples">
+ <exclude name="**/*.desired.sha1"/>
+ </fileset>
</copy>
<mkdir dir="${dist.dir}/doc/scala-devel-docs/tools"/>
<copy toDir="${dist.dir}/doc/scala-devel-docs/tools">