mkdir of output dir

This commit is contained in:
Michele Artini 2020-12-14 11:11:41 +01:00
parent 399548f221
commit d03756c962
1 changed files with 3 additions and 3 deletions

View File

@ -116,15 +116,15 @@
</configuration>
</global>
<start to="ensure_working_path"/>
<start to="ensure_output_dir"/>
<kill name="Kill">
<message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
</kill>
<action name="ensure_working_path">
<action name="ensure_output_dir">
<fs>
<mkdir path='${workingDir}'/>
<mkdir path='${outputDir}'/>
</fs>
<ok to="start_entities_and_rels"/>
<error to="Kill"/>