Rename build.rs to cook_build.rs

This commit is contained in:
Wildan M 2025-10-23 20:50:25 +07:00
parent 7d79ecdad1
commit f41b6845b3
3 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@ use cookbook::recipe::{BuildKind, CookRecipe, Recipe};
use pkg::PackageName;
use cookbook::config::init_config;
use cookbook::cook::build::build;
use cookbook::cook::cook_build::build;
use termion::{color, style};
fn cook_meta(

View File

@ -1,4 +1,5 @@
pub mod build;
// avoid confusion with build.rs
pub mod cook_build;
pub mod fetch;
pub mod fs;
pub mod package;