From 5aa70751ac169e37f97eae903c6bce6608e34929 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Sat, 4 Sep 2021 16:37:41 +1000
Subject: [PATCH] Use \033 instead of \e in Makefile

macOS has an old version of `printf` that only supports octal escapes.
---
 docs/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/Makefile b/docs/Makefile
index a1f2f34..8408b09 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -15,7 +15,7 @@ md_files := $(foreach slug,$(slugs),$(call slug_to_md,$(slug)))
 html_files := $(foreach slug,$(slugs),$(call slug_to_html,$(slug)))
 slugs_and_md_files := $(foreach slug,$(slugs),$(slug):$(call slug_to_md,$(slug)))
 
-print_status = @ printf ' \e[1;35m♦ %s\e[0m\n' '$(1)'
+print_status = @ printf ' \033[1;35m♦ %s\033[0m\n' '$(1)'
 
 .PHONY: all
 all: $(html_files) site/styles.css