From b5bf4583e344c5c207e882ab539ac922a4d3c891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 25 Aug 2014 14:12:06 +0200 Subject: [PATCH] automatically copy the config file if there is no. --- installing_deps.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/installing_deps.sh b/installing_deps.sh index 1d413622..315ee642 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -32,6 +32,10 @@ git submodule update make popd +if [ ! -f bin/packages/config.cfg ]; then + cp bin/packages/config.cfg.sample bin/packages/config.cfg +fi + virtualenv AILENV echo export AIL_HOME=$(pwd) >> ./AILENV/bin/activate