From 51ac37039d240c8eb9ad6b775ca7355b7469026a Mon Sep 17 00:00:00 2001 From: Greg Farough Date: Wed, 18 Mar 2020 12:55:17 -0400 Subject: [PATCH] edit makefile --- 2020/Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/2020/Makefile b/2020/Makefile index 3ac561d5..dff43c76 100644 --- a/2020/Makefile +++ b/2020/Makefile @@ -16,13 +16,10 @@ all: @echo "Give me something to make." -# for f in $(find -name '*.mdwn' -type f); do python -m markdown $f > ${f%mdwn}html; done -# todo: edit below command so it translates ALL markdown files. use above command instead until then. wikipages: - for dir in fun getting-around raffle safe-space-policy speaker-release sponsors volunteer; do \ - if [ -f $$dir/index.mdwn ] ; then \ - python -m markdown $$dir/index.mdwn > $$dir/index.html ; \ - fi \ +for f in $(find -name '*.mdwn' -type f); do \ + python -m markdown $f > ${f%mdwn}html; \ + fi \ done speakers: -- 2.25.1