From 00735d3a4d054066ab32dee0c2ca2e0b1efb6b2f Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Thu, 13 Jan 2022 10:19:10 -0700 Subject: [PATCH] make things work when NO_KEY isn't specified --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 52e0b1b71..15091b57d 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ clean: eos.img: $(EMBASSY_SRC) system-images/compat/compat.tar system-images/utils/utils.tar ! test -f eos.img || rm eos.img - if [ $(NO_KEY) = 1 ]; then NO_KEY=1 ./build/make-image.sh; else ./build/make-image.sh; fi + if [ "$(NO_KEY)" = "1" ]; then NO_KEY=1 ./build/make-image.sh; else ./build/make-image.sh; fi system-images/compat/compat.tar: $(COMPAT_SRC) cd system-images/compat && ./build.sh