From a0c6f951b676e416bb7ba9a2cfede77e134d8a03 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Sun, 29 Oct 2017 19:51:40 +0800 Subject: [PATCH] Show stack traces in Jekyll --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 031e2119e..849dadee4 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ dev-webpack: dev-jekyll: if [ -f _site ]; then \ - bundle exec jekyll serve --safe --drafts --watch --incremental --port $(PORT); \ + bundle exec jekyll serve --safe --trace --drafts --watch --incremental --port $(PORT); \ else \ - bundle exec jekyll serve --safe --drafts --watch --port $(PORT); \ + bundle exec jekyll serve --safe --trace --drafts --watch --port $(PORT); \ fi