Clean template cache during upgradeFromGit

This commit is contained in:
Benjamin Renard 2016-01-28 17:35:03 +01:00
parent d909b5aad5
commit 4f1b44fdda

View file

@ -87,6 +87,16 @@ then
fi
fi
msg "\t\t-> Clean template cache : " -en
rm -f $ROOT_DIR/public_html/tmp/*.tpl.php
if [ $? -gt 0 ]
then
msg "Error"
exit 1
else
msg "Ok"
fi
msg "-> Verification of git repos state : "
git status >> $LOG_FILE 2>&1
if [ "$ETAT" != "" ]