From 7953f9f3a7dfdec4263ff444b4873e68c0687394 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Fri, 11 Apr 2025 12:29:41 +0200 Subject: [PATCH] fix(install): correct binary name in Makefile The previous binary name was incorrect, which could lead to installation failures. - Changed the binary name from 'bin/code-preloader' to 'bin/mfm' in the install section of the Makefile. Signed-off-by: Glenn Y. Rolland --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f0c5bb8..f1faf70 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ test: install: install \ -m 755 \ - bin/code-preloader \ + bin/mfm \ $(PREFIX)/bin .PHONY: spec test build all prepare install