aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers/cache
blob: ac7c8d240f24752d93919d1949dbbe427195473e (plain)
1
2
3
4
#!/bin/sh -eu
cachedir=$(dirname "$(pwd)")/storage/cache
rm --recursive "${cachedir:?}/"* >/dev/null 2>&1 || { printf "Nothing to invalidate in %s\n" "${cachedir:?}" && exit; }
printf "Cache invalidated in %s\n" "${cachedir:?}"