mirror of
https://github.com/nushell/nushell.git
synced 2025-08-10 10:38:07 +02:00
Impl one configurable function to run scripts (#3242)
* Impl one func to run scripts * Add exit_on_err * Remove run_standalone * Make the compiler happy :)
This commit is contained in:
@ -6,6 +6,7 @@ pub mod config_path;
|
||||
pub mod hir;
|
||||
mod maybe_owned;
|
||||
mod return_value;
|
||||
mod script;
|
||||
mod signature;
|
||||
mod syntax_shape;
|
||||
mod type_name;
|
||||
@ -16,6 +17,7 @@ pub use crate::call_info::{CallInfo, EvaluatedArgs};
|
||||
pub use crate::config_path::ConfigPath;
|
||||
pub use crate::maybe_owned::MaybeOwned;
|
||||
pub use crate::return_value::{CommandAction, ReturnSuccess, ReturnValue};
|
||||
pub use crate::script::{NuScript, RunScriptOptions};
|
||||
pub use crate::signature::{NamedType, PositionalType, Signature};
|
||||
pub use crate::syntax_shape::SyntaxShape;
|
||||
pub use crate::type_name::{PrettyType, ShellTypeName, SpannedTypeName};
|
||||
|
Reference in New Issue
Block a user