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">
|
<action name="ResetWorkingPath">
|
||||||
<fs>
|
<fs>
|
||||||
<delete path="'${workingPath}'"/>
|
<delete path="${workingPath}"/>
|
||||||
<mkdir path="'${workingPath}'"/>
|
<mkdir path="${workingPath}"/>
|
||||||
</fs>
|
</fs>
|
||||||
<ok to="ImportDB"/>
|
<ok to="ImportDB"/>
|
||||||
<error to="Kill"/>
|
<error to="Kill"/>
|
||||||
|
@ -119,7 +119,7 @@
|
||||||
|
|
||||||
<action name="ResetAllEntitiesPath">
|
<action name="ResetAllEntitiesPath">
|
||||||
<fs>
|
<fs>
|
||||||
<delete path="'${workingPath}/all_entities'"/>
|
<delete path="${workingPath}/all_entities"/>
|
||||||
</fs>
|
</fs>
|
||||||
<ok to="GenerateEntities"/>
|
<ok to="GenerateEntities"/>
|
||||||
<error to="Kill"/>
|
<error to="Kill"/>
|
||||||
|
@ -155,8 +155,8 @@
|
||||||
|
|
||||||
<action name="ResetGraphPath">
|
<action name="ResetGraphPath">
|
||||||
<fs>
|
<fs>
|
||||||
<delete path="'${graphBasePath}/graph_raw'"/>
|
<delete path="${graphBasePath}/graph_raw"/>
|
||||||
<mkdir path="'${graphBasePath}/graph_raw'"/>
|
<mkdir path="${graphBasePath}/graph_raw"/>
|
||||||
</fs>
|
</fs>
|
||||||
<ok to="GenerateGraph"/>
|
<ok to="GenerateGraph"/>
|
||||||
<error to="Kill"/>
|
<error to="Kill"/>
|
||||||
|
|
Loading…
Reference in New Issue