From c4051d72d4fd662f0589bc6d18ee191a70a08470 Mon Sep 17 00:00:00 2001 From: Jason Nagin <33561705+JasonN3@users.noreply.github.com> Date: Tue, 9 Jul 2024 10:03:39 -0400 Subject: [PATCH] remove extra quotes --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index c7168da..d7f8225 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,5 +1,5 @@ docs: find -name '*.md' | while read -r line; \ do \ - mv "\"$${line:2}\"" $$($${line:2} | tr '/' '_'); \ + mv "$${line:2}" "$$($${line:2} | tr '/' '_')"; \ done \ No newline at end of file