update ant target

This commit is contained in:
Egor Svitin
2023-02-02 12:36:13 +03:00
parent 01ec83ba91
commit 217d63a3c0

View File

@@ -10,11 +10,11 @@
<target name="replace" <target name="replace"
unless="replace.done" unless="replace.done"
description="Replace placeholders in config files" > description="Replace placeholders in config files" >
<replace file="../.env" token="@lcDbName@" value="${lcDbName}"/> <replace file="../.env.sample" token="@lcDbName@" value="${lcDbName}"/>
<replace file="../.env" token="@lcDbHost@" value="${lcDbHost}"/> <replace file="../.env.sample" token="@lcDbHost@" value="${lcDbHost}"/>
<replace file="../.env" token="@lcApiUrl@" value="${lcApiUrl}"/> <replace file="../.env.sample" token="@lcApiUrl@" value="${lcApiUrl}"/>
<replace file="../.env" token="@lcApiKey@" value="${lcApiKey}"/> <replace file="../.env.sample" token="@lcApiKey@" value="${lcApiKey}"/>
<property name="replace.done" value="true"/> <property name="replace.done" value="true"/>
</target> </target>