Update file run_onchange_after_100-cleanup.tmpl

This commit is contained in:
Brian Zalewski 2023-01-24 07:59:25 +00:00
parent 36ca59b885
commit b1be709544

View file

@ -16,3 +16,9 @@ fi
if [ -f "$HOME/.wget-hsts" ]; then if [ -f "$HOME/.wget-hsts" ]; then
rm -f "$HOME/.wget-hsts" rm -f "$HOME/.wget-hsts"
fi fi
### Remove .wrangler
# Not sure how this is populating but the proper environment variables appear to be in place and nothing breaks when its removed
if [ -d "$HOME/.wrangler" ]; then
rm -rf "$HOME/.wrangler"
fi