diff --git a/Makefile b/Makefile
index db00ea7..ba29c00 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/config.xml.dist b/config.xml.dist
index 1d37fd4..f39c3b8 100644
--- a/config.xml.dist
+++ b/config.xml.dist
@@ -1,29 +1,19 @@