From bd582fa47447bc440b3bc10d9ab470b6ed85931a Mon Sep 17 00:00:00 2001 From: Avi Deitcher Date: Sun, 18 Feb 2024 11:40:33 +0200 Subject: [PATCH] use proper null in script and not mispelled nul Signed-off-by: Avi Deitcher --- kernel/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Makefile b/kernel/Makefile index 2bd0fd013..5d14beafb 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -208,7 +208,7 @@ buildtool-%: getbuilder $(eval TARGETIMAGE=$(call toolimagehash,$*)) $(eval KERNELIMAGE=$(call toolkernelimage,$*)) $(eval TOOL=$(call toolname,$*)) - ([ -z "$(FORCE)" ] && docker manifest inspect $(TARGETIMAGE) >/dev/nul 2>&1) || \ + ([ -z "$(FORCE)" ] && docker manifest inspect $(TARGETIMAGE) >/dev/null 2>&1) || \ docker build -f Dockerfile.$(TOOL) \ $(BUILDER_ARG) \ --platform linux/$(BUILDERARCH) \