Skip to content
Snippets Groups Projects
Commit 5d9c5d95 authored by Armand Bahi's avatar Armand Bahi
Browse files

Resolve git ignore on properties.json

parent 9428eabe
No related branches found
No related tags found
No related merge requests found
......@@ -14,4 +14,12 @@ else
./init_symlinks.sh
./pull_subtrees.sh
./copy_hooks.sh
cd ../client/conf
npm install grunt --save
npm install grunt-cli
npm install grunt-closure-tools --save
npm install google-closure-compiler@20160911.0.0 --save
npm install google-closure-library@20160911.0.0 --save
grunt -dev
fi
......@@ -68,10 +68,20 @@ fi
# Conf
echo "---- Link conf ----"
if ! [ -e "src/vitis/client/conf" ]; then
ln -rsf conf client/conf
# ln -rsf conf client/conf
mkdir client/conf
for elem in $( ls "conf"); do
if [[ $elem != 'properties.json' ]]; then
if [[ -d "conf/${elem}" || -f "conf/${elem}" ]]; then
echo "---- Link conf/$elem"
ln -rsf conf/$elem client/conf/$elem
fi
fi
done
fi
if ! [ -e "conf/closure" ]; then
ln -rsf src/closure/conf conf/closure
ln -rsf src/closure/conf client/conf/closure
fi
# Modules
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment