Commit d66c5fc3f7dfefe0d1131ad8a156017baf61c9c1
1 parent
a7b160e5
Exists in
master
and in
1 other branch
Mise à jour du script de mise à jour... (install/update.sh)
- pour qu'il crée un fichier de config des champs obligatoires (config/app_labinvent_mandatory_fields.yml) s'il n'existe pas encore (à partir de la config par défaut) v5.5.2-3.10.1
Showing
3 changed files
with
14 additions
and
2 deletions
Show diff stats
CHANGELOG
... | ... | @@ -484,6 +484,12 @@ rien ? |
484 | 484 | ======= CHANGES ======= |
485 | 485 | |
486 | 486 | ------- |
487 | +06/12/2021 v5.5.2-3.10.1 | |
488 | + - (i) Mise à jour du script de mise à jour... (install/update.sh) | |
489 | + pour qu'il crée un fichier de config des champs obligatoires (config/app_labinvent_mandatory_fields.yml) | |
490 | + s'il n'existe pas encore (à partir de la config par défaut config/app_labinvent_mandatory_fields.default.yml) | |
491 | + | |
492 | +------- | |
487 | 493 | 03/12/2021 v5.5.1-3.10.1 |
488 | 494 | - (i) Mise en conformité de config/app.default.php avec la nouvelle norme CAKEPHP 3.10 |
489 | 495 | => (A) *** CHAQUE LABO doit mettre à jour son config/app.php en fonction du nouveau config/app.default.php *** | ... | ... |
README.md
... | ... | @@ -52,8 +52,8 @@ Logiciel testé et validé sur les configurations suivantes : |
52 | 52 | |
53 | 53 | -------------------------------------------------------------------------------------------- |
54 | 54 | |
55 | -Date: 03/12/2021 | |
56 | -Version: v5.5.1-3.10.1 | |
55 | +Date: 06/12/2021 | |
56 | +Version: v5.5.2-3.10.1 | |
57 | 57 | |
58 | 58 | |
59 | 59 | HISTORIQUE DES CHANGEMENTS DE VERSION : voir le fichier CHANGES.txt (ou la page web /pages/changes) | ... | ... |
install/update.sh
... | ... | @@ -139,6 +139,12 @@ chmod 777 webroot/img/photos/ |
139 | 139 | |
140 | 140 | cd - >/dev/null || abort |
141 | 141 | |
142 | + | |
143 | +# Création du fichier de configuration des champs obligatoires de la fiche Materiel (s'il n'existe pas déjà) | |
144 | +f=app_labinvent_mandatory_fields.yml | |
145 | +[ ! -f ../config/$f ] && cp ../config/app_labinvent_mandatory_fields.default.yml ../config/$f && chmod 666 ../config/$f | |
146 | + | |
147 | + | |
142 | 148 | # ---------------------------------------- |
143 | 149 | # 1b) Affichage de la nouvelle version |
144 | 150 | # ---------------------------------------- | ... | ... |