Merge pull request #1 from monarc-project/deliveriesTemplatesForClients

Deliveries templates for clients
pull/2/head
Cédric Bonhomme 2018-04-26 15:13:46 +02:00 committed by GitHub
commit 8351700d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

2
.gitignore vendored
View File

@ -15,10 +15,12 @@ public/css/
public/js/ public/js/
public/img/ public/img/
public/views/ public/views/
public/flags/
module/ module/
node_modules/ node_modules/
config/application.config.php config/application.config.php
bin/ bin/
data/monarc/
data/DoctrineORMModule/ data/DoctrineORMModule/
data/json/ data/json/
go-pear.phar go-pear.phar

View File

@ -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