mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 02:24:58 +02:00
Fix regression. skip-until 'skips' until condition is met.
This commit is contained in:
@ -100,8 +100,8 @@ impl WholeStreamCommand for SkipUntil {
|
||||
trace!("RESULT = {:?}", result);
|
||||
|
||||
match result {
|
||||
Ok(ref v) if v.is_true() => true,
|
||||
_ => false,
|
||||
Ok(ref v) if v.is_true() => false, // stop skipping
|
||||
_ => true,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user