Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Stephane Crozat
hdoc
Commits
9c4c97bb
Commit
9c4c97bb
authored
Jan 07, 2016
by
Jean Vintache
Browse files
fix etherpad-to-opale ant
parent
32eb6299
Changes
1
Show whitespace changes
Inline
Side-by-side
etherpad_to_opale/etherpad_to_opale.ant
View file @
9c4c97bb
...
...
@@ -10,6 +10,10 @@
</condition>
<target
name=
"to_hdoc_init"
>
</target>
<target
name=
"to_hdoc_windows"
if=
"${is_windows}"
>
<delete>
<fileset
dir=
"${eth_in}"
>
<include
name=
"*.html"
/>
...
...
@@ -20,17 +24,27 @@
<include
name=
"*.html"
/>
</fileset>
</copy>
</target>
<target
name=
"to_hdoc_windows"
if=
"${is_windows}"
>
<exec
dir=
"../etherpad_to_hdoc"
executable=
"run.bat"
/>
</target>
<target
name=
"to_hdoc_unix"
if=
"${is_unix}"
>
<delete>
<fileset
dir=
"${eth_in}"
>
<include
name=
"*.html"
/>
</fileset>
</delete>
<copy
todir=
"${eth_in}"
>
<fileset
dir=
"${in}"
>
<include
name=
"*.html"
/>
</fileset>
</copy>
<exec
dir=
"../etherpad_to_hdoc"
executable=
"run.sh"
/>
</target>
<target
name=
"to_opale_init"
>
</target>
<target
name=
"to_opale_unix"
if=
"${is_unix}"
>
<delete>
<fileset
dir=
"${opa_in}"
>
<include
name=
"*.hdoc"
/>
...
...
@@ -39,13 +53,18 @@
<copy
todir=
"${opa_in}"
>
<fileset
dir=
"${eth_out}"
/>
</copy>
</target>
<target
name=
"to_opale_unix"
if=
"${is_unix}"
>
<exec
dir=
"../hdoc_to_opale"
executable=
"run.sh"
/>
</target>
<target
name=
"to_opale_windows"
if=
"${is_windows}"
>
<delete>
<fileset
dir=
"${opa_in}"
>
<include
name=
"*.hdoc"
/>
</fileset>
</delete>
<copy
todir=
"${opa_in}"
>
<fileset
dir=
"${eth_out}"
/>
</copy>
<exec
dir=
"../hdoc_to_opale"
executable=
"run.bat"
/>
</target>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment