Skip to content

Commit

Permalink
Merge branch 'release-v0.1.0' into released
Browse files Browse the repository at this point in the history
  • Loading branch information
bwbohl committed Jan 24, 2022
2 parents 8d40b95 + 1e83a50 commit de7d933
Show file tree
Hide file tree
Showing 17 changed files with 3,173 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
miscellaneous

27 changes: 27 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="bazga-csl">
<tstamp>
<format property="ant.tstamp.now.iso" pattern="yyyy-MM-dd'T'HH:mm:ssXXX"/>
</tstamp>
<exec command="git log -1 --pretty='format:%aI' src/bazga.csl" outputproperty="csl-mod.tstamp.iso"/>
<target name="props">
<echo message="${TSTAMP}"></echo>
<echo message="${DSTAMP}"></echo>
<echo message="${TODAY}"></echo>
<echo message="${ant.tstamp.now.iso}"></echo>
<echo message="${csl-mod.tstamp.iso}"></echo>
</target>
<target name="build" depends="clean">
<mkdir dir="build"/>
<copy todir="build" force="true" >
<file file="src/bazga.csl" />
<filterset begintoken="@" endtoken="@">
<filter token="DATE.PUBLICATION" value="${ant.tstamp.now.iso}"/>
<filter token="DATE.LAST-MOD" value="${csl-mod.tstamp.iso}"/>
</filterset>
</copy>
</target>
<target name="clean">
<delete dir="build"/>
</target>
</project>
Loading

0 comments on commit de7d933

Please sign in to comment.