her.esy.fun/engine/clean.sh

8 lines
158 B
Bash
Raw Permalink Normal View History

2019-09-25 14:31:47 +00:00
#!/usr/bin/env bash
2020-02-10 08:42:17 +00:00
cd "$(git rev-parse --show-toplevel)" || exit 1
2019-12-22 23:01:06 +00:00
echo -n "* Clean site cache"
2020-02-12 23:39:46 +00:00
find _site -mindepth 1 -delete
2019-09-25 14:31:47 +00:00
rm -rf _cache
2019-12-22 23:01:06 +00:00
echo " [done]"