-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy-task.xml
34 lines (32 loc) · 1.27 KB
/
copy-task.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<project basedir="." name="copyfiles">
<delete dir="./data/editions"/>
<mkdir dir="./data/editions"/>
<copy todir="./data/editions/" flatten="true">
<fileset dir="./Hermann-Bahr_Arthur-Schnitzler-master/app/data/diaries">
<include name="D*.xml"/>
</fileset>
<fileset dir="./Hermann-Bahr_Arthur-Schnitzler-master/app/data/letters">
<include name="L*.xml"/>
</fileset>
<fileset dir="./Hermann-Bahr_Arthur-Schnitzler-master/app/data/texts">
<include name="T*.xml"/>
</fileset>
</copy>
<delete dir="./data/indices"/>
<mkdir dir="./data/indices"/>
<copy todir="./data/indices/" flatten="true">
<fileset dir="./Hermann-Bahr_Arthur-Schnitzler-master/app/data/indices">
<include name="list*.xml"/>
</fileset>
</copy>
<delete dir="./data/meta"/>
<mkdir dir="./data/meta"/>
<copy todir="./data/meta/" flatten="true">
<fileset dir="./Hermann-Bahr_Arthur-Schnitzler-master/app/data/meta">
<include name="E*.xml"/>
<include name="*.rdf"/>
</fileset>
</copy>
<move file="./data/meta/E000005.xml" tofile="./data/meta/about.xml"/>
<delete dir="./Hermann-Bahr_Arthur-Schnitzler-master"/>
</project>