Creates the directory for the flags
parent
959525d7f9
commit
92c5d07e14
|
@ -12,6 +12,13 @@ if [ ! -d public/css ]; then
|
||||||
else
|
else
|
||||||
find -L public/css -type l -exec rm {} \;
|
find -L public/css -type l -exec rm {} \;
|
||||||
fi
|
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
|
if [ ! -d public/views/dialogs ]; then
|
||||||
mkdir -p public/views/dialogs
|
mkdir -p public/views/dialogs
|
||||||
else
|
else
|
||||||
|
@ -93,4 +100,3 @@ if [ -d node_modules/ng_client ]; then
|
||||||
grunt concat
|
grunt concat
|
||||||
popd
|
popd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue