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

Resolve git ignore on properties.json

parent 2203c387
Branches
Tags
No related merge requests found
...@@ -14,4 +14,12 @@ else ...@@ -14,4 +14,12 @@ else
./init_symlinks.sh ./init_symlinks.sh
./pull_subtrees.sh ./pull_subtrees.sh
./copy_hooks.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 fi
...@@ -68,10 +68,20 @@ fi ...@@ -68,10 +68,20 @@ fi
# Conf # Conf
echo "---- Link conf ----" echo "---- Link conf ----"
if ! [ -e "src/vitis/client/conf" ]; then 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 fi
if ! [ -e "conf/closure" ]; then if ! [ -e "conf/closure" ]; then
ln -rsf src/closure/conf conf/closure ln -rsf src/closure/conf client/conf/closure
fi fi
# Modules # Modules
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment