mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 15:16:17 +02:00
add -n flag to print to print without a newline (#5458)
* add -n flag to print to print without a newline * clippy
This commit is contained in:
@ -216,7 +216,7 @@ impl Command for Watch {
|
||||
|
||||
match eval_result {
|
||||
Ok(val) => {
|
||||
val.print(engine_state, stack)?;
|
||||
val.print(engine_state, stack, false)?;
|
||||
}
|
||||
Err(err) => {
|
||||
let working_set = StateWorkingSet::new(engine_state);
|
||||
|
Reference in New Issue
Block a user