summaryrefslogtreecommitdiff
path: root/tidy.sh
diff options
context:
space:
mode:
authorBill <bill@billserver.senders.io>2022-11-05 23:41:46 -0400
committerBill <bill@billserver.senders.io>2022-11-05 23:41:46 -0400
commit768f44a55bf757abe1bfc0829de301ade964354e (patch)
treea45e3a82fb65f926c37eda89b407ae7b4f46e4a5 /tidy.sh
parent3c055d4d579a0b78a9a9ebc622cec32037e958ac (diff)
Create new MD blog post and retidy
I updated tidy so each file got a nice update along with the actual update
Diffstat (limited to 'tidy.sh')
-rwxr-xr-xtidy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tidy.sh b/tidy.sh
index 7ac0409..6fd975e 100755
--- a/tidy.sh
+++ b/tidy.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
if [ $# == 0 ]; then
- find . -name '*.html' -type f -print -exec tidy -mq -config tidy.conf '{}' \;
+ find www/ -name '*.html' -type f -print -exec tidy -mq -config tidy.conf '{}' \;
else
tidy -mq -config tidy.conf $@
fi