Compare commits

...

2 Commits

Author SHA1 Message Date
b9d720a944 Merge branch 'main' of https://chookspace.com/Comet/Nebula 2026-07-07 11:11:36 +10:00
dadd86183b bugfix to neb build 2026-07-07 11:11:28 +10:00

View File

@@ -15,9 +15,9 @@ def build(args):
out_path = os.path.join(comet_libs_dir, f"{folder_name}.cometlib")
c_files = glob.glob(f"{args.path}/*.c", recursive=True)
c_files = glob.glob(f"{args.path}/src/*.c", recursive=True)
if len(c_files) == 0:
print_error_message(f"No C files were found in that directory! [d white]({folder_name})[/d white]")
print_error_message(f"No C files were found in that directory! [d white]({folder_name}/src)[/d white]")
sys.exit(1)
with console.status("Building", spinner="moon") as status: