From e46e3bb02a8593eccd909da88b4e836b6558fa23 Mon Sep 17 00:00:00 2001 From: ImagineHaxing Date: Fri, 28 Aug 2026 10:35:45 +0300 Subject: [PATCH] Fix build nob.c --- nob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nob.c b/nob.c index db00725..e5ca033 100644 --- a/nob.c +++ b/nob.c @@ -162,7 +162,7 @@ bool build_bootable_image(Nob_Cmd *cmd) { if (!nob_mkdir_if_not_exists(BUILD_FOLDER "limine")) return false; - if (!nob_file_exists(BUILD_FOLDER "limine")) { + if (!nob_file_exists(BUILD_FOLDER "limine/limine.c")) { nob_cmd_append(cmd, "git", "clone", "https://github.com/limine-bootloader/limine.git", "--branch=v11.x-binary", "--depth=1", BUILD_FOLDER "limine"); if (!nob_cmd_run(cmd)) return false;