forked from D-Net/dnet-hadoop
fixed expansion of path variables
This commit is contained in:
parent
2795b0b096
commit
2f11e37602
|
@ -64,8 +64,8 @@
|
|||
|
||||
<action name="ResetWorkingPath">
|
||||
<fs>
|
||||
<delete path="'${workingPath}'"/>
|
||||
<mkdir path="'${workingPath}'"/>
|
||||
<delete path="${workingPath}"/>
|
||||
<mkdir path="${workingPath}"/>
|
||||
</fs>
|
||||
<ok to="ImportDB"/>
|
||||
<error to="Kill"/>
|
||||
|
@ -119,7 +119,7 @@
|
|||
|
||||
<action name="ResetAllEntitiesPath">
|
||||
<fs>
|
||||
<delete path="'${workingPath}/all_entities'"/>
|
||||
<delete path="${workingPath}/all_entities"/>
|
||||
</fs>
|
||||
<ok to="GenerateEntities"/>
|
||||
<error to="Kill"/>
|
||||
|
@ -155,8 +155,8 @@
|
|||
|
||||
<action name="ResetGraphPath">
|
||||
<fs>
|
||||
<delete path="'${graphBasePath}/graph_raw'"/>
|
||||
<mkdir path="'${graphBasePath}/graph_raw'"/>
|
||||
<delete path="${graphBasePath}/graph_raw"/>
|
||||
<mkdir path="${graphBasePath}/graph_raw"/>
|
||||
</fs>
|
||||
<ok to="GenerateGraph"/>
|
||||
<error to="Kill"/>
|
||||
|
|
Loading…
Reference in New Issue