intranet/update.bat
2023-08-09 20:42:19 +00:00

8 lines
299 B
Batchfile

@REM Pulls from Master and refreshes the cache
call git pull
call composer update
call php bin/console cache:clear
call php bin/console cache:pool:prune
call php bin/console cache:warmup
echo Update complete and changes should now be visible. If not, you may need to recycle application pools.
pause