From 2abc5acd25756f3ef6a6ad34f8777ffe241e750d Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 27 Jan 2026 06:16:58 +0800 Subject: Reorganize command modules under a unified cmds directory --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.rs') diff --git a/build.rs b/build.rs index 22842ed..07b5c10 100644 --- a/build.rs +++ b/build.rs @@ -4,7 +4,7 @@ use std::process::Command; use string_proc::pascal_case; -const COMMANDS_PATH: &str = "./src/cmds/"; +const COMMANDS_PATH: &str = "./src/cmds/cmd/"; const COMPILE_INFO_RS_TEMPLATE: &str = "./templates/compile_info.rs.template"; const COMPILE_INFO_RS: &str = "./src/data/compile_info.rs"; @@ -312,7 +312,7 @@ fn generate_cmd_registry_file(repo_root: &PathBuf) -> Result<(), Box