From 68ae1fb265109da13b6ff80210dc15a381e702dc Mon Sep 17 00:00:00 2001 From: Phireh Date: Sat, 21 Aug 2021 03:02:59 +0200 Subject: [PATCH] Small Makefile fix --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5f8bbab..41c85b6 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,6 @@ raytracer: main.cpp vec3.hpp color.hpp ray.hpp hittable.hpp sphere.hpp hittable_ image: raytracer @./raytracer > image.ppm - @if [[ $$TERM = "xterm-kitty" ]]; then\ + @if [ $$TERM = "xterm-kitty" ]; then\ kitty icat image.ppm;\ fi