22 lines
346 B
Bash
Raw Permalink Normal View History

2021-04-06 07:36:14 -07:00
#!/bin/bash
set -o errexit -o pipefail
yarn cache clean
hugo mod clean
rm -rf _vendor
rm -rf public
rm -rf node_modules
rm -rf themes/default/theme/node_modules
2021-04-06 07:36:14 -07:00
for dir in themes/* ; do
pushd $dir
hugo mod clean
rm -rf resources
rm -rf node_modules
rm -rf static/js
rm -rf static/css
popd
done