aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers/cache-bust
blob: 267b442359ee7586c94474365ad98023d364aeb9 (plain)
1
2
3
4
#!/bin/sh -eu
cachedir=$(dirname "$(pwd)")/app/storage/cache;
rm -r "${cachedir:?}/"* > /dev/null 2>&1 || { echo "Nothing to invalidate in ${cachedir:?}" && exit; };
echo "Cache invalidated in ${cachedir:?}";