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
a60ad8db
Commit
a60ad8db
authored
Dec 21, 2015
by
Antoine
Browse files
input and output folders now automatically created
parent
da862184
Changes
2
Hide whitespace changes
Inline
Side-by-side
opale_to_lexique/README.md
View file @
a60ad8db
# Converter opale_to_lexique
In order to use this converter, follow those steps :
0.
Create an input and an output folder
1.
Copy your Opale file(s) (.scar or .zip) into the input directory.
2.
Execute the run that correspond to your OS.
3.
You will find the result into the output directory.The name of the output files depends of the hour it was processed.
opale_to_lexique/opale_to_lexique.ant
View file @
a60ad8db
...
...
@@ -15,8 +15,16 @@
</classpath>
</taskdef>
<target
name=
"init"
>
<target
name=
"rmOutputDir"
>
<if>
<available
file=
"${OutputPath}"
type=
"dir"
/>
<then>
<delete
dir=
"${OutputPath}"
/>
</then>
</if>
</target>
<target
name=
"init"
depends=
"rmOutputDir"
>
<mkdir
dir=
"${outdir}"
/>
<chmod
perm=
"777"
dir=
"${outdir}"
></chmod>
<mkdir
dir=
"${srcdir}"
/>
...
...
Write
Preview
Supports
Markdown
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