From 08362f028375c4315d04b2ce4837153bcbf1f81a Mon Sep 17 00:00:00 2001 From: bit-aloo Date: Fri, 7 Feb 2025 20:32:16 +0530 Subject: [PATCH] add module level doc for bootstrap:util:exec --- src/bootstrap/src/utils/exec.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bootstrap/src/utils/exec.rs b/src/bootstrap/src/utils/exec.rs index 60216395c2f6e..1902dcd396283 100644 --- a/src/bootstrap/src/utils/exec.rs +++ b/src/bootstrap/src/utils/exec.rs @@ -1,3 +1,8 @@ +//! Command Execution Module +//! +//! This module provides a structured way to execute and manage commands efficiently, +//! ensuring controlled failure handling and output management. + use std::ffi::OsStr; use std::fmt::{Debug, Formatter}; use std::path::Path;