-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
30 lines (28 loc) · 962 Bytes
/
build.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
<project name="CINNAMON" default="main">
<target name="make_archive">
<copy todir="build/Cinnamon/bin">
<fileset dir="bin" />
</copy>
<copy todir="build/Cinnamon/config">
<fileset dir="config" />
</copy>
<copy todir="build/Cinnamon/mod">
<fileset dir="mod" />
</copy>
<copy todir="build/Cinnamon/modules">
<fileset dir="modules" />
</copy>
<copy file="grin.json" todir="build/Cinnamon" />
<zip zip64Mode="never" destfile="build/Cinnamon.zip" basedir="build/Cinnamon" />
</target>
<target name="base64" depends="make_archive">
<exec executable="base64">
<arg value="-i" />
<arg value="build/Cinnamon.zip" />
<arg value="-o" />
<arg value="build/Cinnamon.zip.base64" />
</exec>
</target>
<target name="main" depends="base64">
</target>
</project>