| 1234567891011121314151617181920212223242526 |
- #!/usr/bin/env bash
-
- function clearCacheAndLogs() {
- rm -rf var/cache/*
- [ "$?" != "0" ] && exit 1
- chmod -R 777 var/cache
- [ "$?" != "0" ] && exit 1
-
- rm -rf var/log/*
- [ "$?" != "0" ] && exit 1
- chmod -R 777 var/log
- [ "$?" != "0" ] && exit 1
- }
-
- function initBenchmark() {
- clearCacheAndLogs
-
- composer install --no-dev --classmap-authoritative
- [ "$?" != "0" ] && exit 1
-
- clearCacheAndLogs
- php bin/console cache:warmup
- [ "$?" != "0" ] && exit 1
-
- return 0
- }
|