1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-09 19:07:16 +02:00

Fix match blocks in std-rfc/kv implementation ()

Fixes failure surfaced by merging
https://github.com/nushell/nushell/pull/15032
This commit is contained in:
Stefan Holderbach
2025-02-11 11:16:57 +01:00
committed by GitHub
parent 553c951a60
commit 18e3a5d40b

@ -190,8 +190,8 @@ def db_setup [
# Return the correct closure for opening on-disk vs. in-memory
match $universal {
true => {|| {|| open (universal_db_path)}}
false => {|| {|| stor open}}
true => {{|| open (universal_db_path)}}
false => {{|| stor open}}
}
}