dont mess with config file

This commit is contained in:
artnuc.ct9
2021-01-21 11:57:08 +04:00
parent b646670848
commit 5f6c97d146
3 changed files with 21 additions and 28 deletions
+5 -2
View File
@@ -6,8 +6,11 @@ ENV?="dev"
#To compile project with plugins, add PLUGINS=1 or type `export PLUGINS=1`
install:
#copy config file from template
cp config.xml.dist config.xml
#copy config file from template first time only
@if [ ! -f config.xml ]; then \
cp config.xml.dist config.xml; \
fi
@if [ $(ENV) = "dev" ]; then \
make install_dev; \
fi