From caf3b88f6baf62fca1cabacfe78931f5e0031f93 Mon Sep 17 00:00:00 2001 From: Sarah Brown Date: Fri, 6 Dec 2019 11:53:29 -0500 Subject: [PATCH] clarify comment on python check block --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ecdb230..dd47203 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,8 @@ JEKYLL_VERSION=3.8.5 PARSER=bin/markdown_ast.rb DST=_site -# Check Python 3 (https://stackoverflow.com/a/4933395) +# Check Python 3 is installed and determine if it's called via python3 or python +# (https://stackoverflow.com/a/4933395) ifneq (, $(shell which python3)) PYTHON := python3 else ifneq (, $(shell which python)) -- 2.30.2