Commit dc9f9e5d161ece2fce0d252a9426b40f018618b5
1 parent
b3ace92e
Exists in
master
and in
1 other branch
bugfix UPDATE
Showing
1 changed file
with
7 additions
and
2 deletions
Show diff stats
install/update.sh
... | ... | @@ -66,6 +66,11 @@ read do_it ; [[ -z $do_it ]] && do_it="o" |
66 | 66 | [[ $do_it != "o" ]] && exit 0 |
67 | 67 | |
68 | 68 | cd ../ || abort |
69 | + | |
70 | +# TODO: AVIRER dès que ca a été fait au moins 1 fois (dans tous les labos utilisateurs) | |
71 | +# Temporairement nécessaire pour nettoyer définitivement vendor/ | |
72 | +rm -rf vendor/* | |
73 | + | |
69 | 74 | #git pull || abort |
70 | 75 | git -c http.sslVerify=false pull || abort |
71 | 76 | |
... | ... | @@ -100,8 +105,8 @@ diff ../composer.json $composer_json_prev >/dev/null |
100 | 105 | if [[ $? == 0 ]] ; then |
101 | 106 | echo "==> PAS NÉCESSAIRE" |
102 | 107 | else |
103 | - echo "OUI" | |
104 | - #./plugins_install.sh | |
108 | + #echo "OUI" | |
109 | + ./plugins_install.sh | |
105 | 110 | fi |
106 | 111 | |
107 | 112 | ... | ... |