mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-19 11:42:43 +00:00
9 lines
195 B
Bash
Executable File
9 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
php /usr/local/composer-mirror/bin/console app:crawler
|
|
# 6553/32768
|
|
if [[ $RANDOM -le 6553 ]]; then
|
|
php /usr/local/composer-mirror/bin/console app:clear --expired=json
|
|
fi
|