From 4f54bd7bde3667c296a4353a9fdebe13cae3af9a Mon Sep 17 00:00:00 2001 From: PresGas Date: Tue, 28 Dec 2021 14:18:22 -0500 Subject: [PATCH] reset command was not removing .md files. Implemented. --- bb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb.sh b/bb.sh index 5d2e6eb..80abdf9 100755 --- a/bb.sh +++ b/bb.sh @@ -1063,7 +1063,7 @@ reset() { echo "Are you sure you want to delete all blog entries? Please write \"Yes, I am!\" " read -r line if [[ $line == "Yes, I am!" ]]; then - rm .*.html ./*.html ./*.css ./*.rss &> /dev/null + rm .*.html ./*.html ./*.md ./*.css ./*.rss &> /dev/null echo echo "Deleted all posts, stylesheets and feeds." echo "Kept your old '.backup.tar.gz' just in case, please delete it manually if needed."