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

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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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