From 0e62b601da22644b3a002e6259fba0e595b30b27 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 4 Nov 2025 09:30:21 -0300 Subject: [PATCH] feat: update directory list in add-req.sh Updated the directory list in add-req.sh to include previously commented-out directories and added new ones. The changes reflect a more complete set of project modules, including newly added ones like 'bootstrap', 'llm_models', and 'ui'. This ensures the script will process requirements for all current project components. --- add-req.sh | 40 ++++++++++++++++++++++------------------ src/create_bucket.rs | 8 -------- 2 files changed, 22 insertions(+), 26 deletions(-) delete mode 100644 src/create_bucket.rs diff --git a/add-req.sh b/add-req.sh index 29ffae3d..9d15a576 100755 --- a/add-req.sh +++ b/add-req.sh @@ -19,28 +19,32 @@ for file in "${prompts[@]}"; do done dirs=( - # "auth" + "auth" "automation" "basic" + "bootstrap" "bot" - # "bootstrap" - # "package_manager" - # "channels" - "config" - "context" - # "email" - # "file" - # "llm" - # "drive_monitor" - # "llm_legacy" - # "org" - "session" - "kb" - "shared" - #"tests" + "channels" + "config" + "context" + "drive_monitor" + "email" + "file" + "kb" + "llm" + "llm_models" + "org" + "package" + "package_manager" + "riot_compiler" + "session" + "shared" + "tests" "tools" - # "web_automation" - # "whatsapp" + "ui" + "web_server" + "web_automation" + "whatsapp" ) filter_rust_file() { diff --git a/src/create_bucket.rs b/src/create_bucket.rs deleted file mode 100644 index c2163446..00000000 --- a/src/create_bucket.rs +++ /dev/null @@ -1,8 +0,0 @@ -use std::fs; -use std::path::Path; - -pub fn create_bucket(bucket_name: &str) -> std::io::Result<()> { - let bucket_path = Path::new("buckets").join(bucket_name); - fs::create_dir_all(&bucket_path)?; - Ok(()) -}