Creates the directory for the flags

pull/1/head
Cédric Bonhomme 2018-04-20 14:42:01 +02:00
parent 959525d7f9
commit 92c5d07e14
No known key found for this signature in database
GPG Key ID: A1CB94DE57B7A70D
1 changed files with 7 additions and 1 deletions

View File

@ -12,6 +12,13 @@ if [ ! -d public/css ]; then
else
find -L public/css -type l -exec rm {} \;
fi
if [ ! -d public/flags ]; then
mkdir public/flags
else
find -L public/flags -type l -exec rm {} \;
fi
if [ ! -d public/views/dialogs ]; then
mkdir -p public/views/dialogs
else
@ -93,4 +100,3 @@ if [ -d node_modules/ng_client ]; then
grunt concat
popd
fi