Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions module/core/process_tools/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,17 +223,17 @@ mod private
run( self.form() )
}

/// Executes an external process using the system shell.
///
/// This function abstracts over the differences between shells on Windows and Unix-based
/// systems, allowing for a unified interface to execute shell commands.
///
/// # Parameters:
/// - `exec_path`: The command line string to execute in the shell.
///
/// # Returns:
/// A `Result` containing a `Report` on success, which includes the command's output,
/// or an error if the command fails to execute or complete.
// Executes an external process using the system shell.
//
// This function abstracts over the differences between shells on Windows and Unix-based
// systems, allowing for a unified interface to execute shell commands.
//
// # Parameters:
// - `exec_path`: The command line string to execute in the shell.
//
// # Returns:
// A `Result` containing a `Report` on success, which includes the command's output,
// or an error if the command fails to execute or complete.
// pub fn run_with_shell( self, exec_path : &str, ) -> Result< Report, Report >
// {
// let ( program, args ) =
Expand Down
Loading