2016-04-13 14:58:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-04-26 15:55:13 +02:00
|
|
|
# Ensure folders are existing
|
2016-04-13 14:58:41 +02:00
|
|
|
if [ ! -d public/js ]; then
|
|
|
|
mkdir public/js
|
2016-07-28 14:29:43 +02:00
|
|
|
else
|
|
|
|
find -L public/js -type l -exec rm {} \;
|
2016-04-13 14:58:41 +02:00
|
|
|
fi
|
|
|
|
|
2016-04-22 15:51:07 +02:00
|
|
|
if [ ! -d public/css ]; then
|
|
|
|
mkdir public/css
|
2016-07-28 14:29:43 +02:00
|
|
|
else
|
|
|
|
find -L public/css -type l -exec rm {} \;
|
2016-04-22 15:51:07 +02:00
|
|
|
fi
|
2018-04-13 13:11:55 +02:00
|
|
|
|
|
|
|
if [ ! -d public/flags ]; then
|
|
|
|
mkdir public/flags
|
|
|
|
else
|
|
|
|
find -L public/flags -type l -exec rm {} \;
|
|
|
|
fi
|
|
|
|
|
2016-08-23 14:38:51 +02:00
|
|
|
if [ ! -d public/views/dialogs ]; then
|
2016-04-14 10:34:14 +02:00
|
|
|
mkdir -p public/views/dialogs
|
2016-07-28 14:29:43 +02:00
|
|
|
else
|
2016-08-23 14:38:51 +02:00
|
|
|
find -L public/views -type l -exec rm {} \;
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d public/views/partials ]; then
|
|
|
|
mkdir -p public/views/partials
|
|
|
|
else
|
|
|
|
find -L public/views -type l -exec rm {} \;
|
2016-04-13 14:58:41 +02:00
|
|
|
fi
|
|
|
|
|
2016-04-13 17:03:50 +02:00
|
|
|
if [ ! -d public/img ]; then
|
|
|
|
mkdir public/img
|
2016-07-28 14:29:43 +02:00
|
|
|
else
|
|
|
|
find -L public/img -type l -exec rm {} \;
|
2016-04-13 17:03:50 +02:00
|
|
|
fi
|
|
|
|
|
2019-10-30 10:53:05 +01:00
|
|
|
# Link modules resources. TODO: Replace with Grunt tasks to minify the JS and CSS.
|
|
|
|
cd public/views/ && find ../../node_modules/ng_client/views -name "*.html" -exec ln -s {} \; 2>/dev/null
|
|
|
|
cd dialogs/ && find ../../../node_modules/ng_client/views/dialogs -maxdepth 1 -name "*.html" -exec ln -s {} \; 2>/dev/null
|
|
|
|
cd ../../js/ && find ../../node_modules/ng_client/src -name "*" -exec ln -s {} \; 2>/dev/null
|
|
|
|
cd ../css/ && find ../../node_modules/ng_client/css -name "*" -exec ln -s {} \; 2>/dev/null
|
|
|
|
cd ../img/ && find ../../node_modules/ng_client/img -name "*" -exec ln -s {} \; 2>/dev/null
|
2022-05-19 11:08:19 +02:00
|
|
|
cd ../flags/ && find ../../node_modules/ng_client/node_modules/flag-icons/flags -mindepth 1 -type d -exec ln -s {} \; 2>/dev/null
|
2019-10-30 10:53:05 +01:00
|
|
|
|
|
|
|
cd ../js/
|
|
|
|
mkdir -p anr
|
2020-11-17 10:03:49 +01:00
|
|
|
cd anr && find ../../../node_modules/ng_anr/src -type f -name "*" -exec ln -s {} \; 2>/dev/null
|
2019-10-30 10:53:05 +01:00
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd ../views/
|
|
|
|
mkdir -p anr
|
|
|
|
cd anr && find ../../../node_modules/ng_anr/views -type f -maxdepth 1 -name "*" -exec ln -s {} \; 2>/dev/null
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd ../css/
|
|
|
|
mkdir -p anr
|
|
|
|
cd anr && find ../../../node_modules/ng_anr/css -type f -maxdepth 1 -name "*" -exec ln -s {} \; 2>/dev/null
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd ../..
|
|
|
|
|
|
|
|
pushd node_modules/ng_client
|
|
|
|
grunt concat
|
|
|
|
popd
|