From 99b54df28725f71f22bb8c38dcba675fcb9506fc Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Wed, 17 Jun 2026 18:21:28 +0100 Subject: [PATCH] fix bug in prune_blog: rm '' --- http/bin/prune_blog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/bin/prune_blog b/http/bin/prune_blog index 35f7c3c..c972c61 100755 --- a/http/bin/prune_blog +++ b/http/bin/prune_blog @@ -38,5 +38,5 @@ do fi echo "No source file found to match post ${post} in blog ${BLOG}: removing ${post}" - rm "$out" + rm "$post" done