1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-11 20:05:25 +02:00

Treat all the startup commands as a single script file ()

This commit is contained in:
Jonathan Turner
2021-01-08 19:36:31 +13:00
committed by GitHub
parent ac9909112f
commit 2dcb16870b

@ -359,11 +359,12 @@ async fn run_startup_commands(
value: UntaggedValue::Table(pipelines),
..
} => {
let mut script_file = String::new();
for pipeline in pipelines {
if let Ok(pipeline_string) = pipeline.as_string() {
let _ = run_script_standalone(pipeline_string, false, context, false).await;
}
script_file.push_str(&pipeline.as_string()?);
script_file.push('\n');
}
let _ = run_script_standalone(script_file, false, context, false).await;
}
_ => {
return Err(ShellError::untagged_runtime_error(