From 92c5d07e146d4160702f0b3435a88bb48d3ad341 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Fri, 20 Apr 2018 14:42:01 +0200 Subject: [PATCH] Creates the directory for the flags --- scripts/link_modules_resources.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/link_modules_resources.sh b/scripts/link_modules_resources.sh index 7d17683..5a864a0 100755 --- a/scripts/link_modules_resources.sh +++ b/scripts/link_modules_resources.sh @@ -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 -