From fad7522da7212e42689d7726c59024e3850fa75b Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Tue, 19 Nov 2019 13:09:54 -0800 Subject: [PATCH] fix: simplify jsfiddle file name (#76) --- build/render_template.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/render_template.sh b/build/render_template.sh index 75b7b1832c..4be8e9ef97 100755 --- a/build/render_template.sh +++ b/build/render_template.sh @@ -17,7 +17,7 @@ nunjucks $d/src/index.njk -p . $d/data.json --loglevel info mkdir -p $d/dist if [ "$JSFIDDLE" -eq "1" ]; then - mv $d/src/index.html $d/dist/index.jsfiddle.html + mv $d/src/index.html $d/dist/jsfiddle.html else mv $d/src/index.html $d/dist/index.html fi