Skip to content

Commit 18e3a5d

Browse files
authored
Fix match blocks in std-rfc/kv implementation (nushell#15089)
Fixes failure surfaced by merging nushell#15032
1 parent 553c951 commit 18e3a5d

File tree

1 file changed

+2
-2
lines changed
  • crates/nu-std/std-rfc/kv

1 file changed

+2
-2
lines changed

crates/nu-std/std-rfc/kv/mod.nu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ def db_setup [
190190

191191
# Return the correct closure for opening on-disk vs. in-memory
192192
match $universal {
193-
true => {|| {|| open (universal_db_path)}}
194-
false => {|| {|| stor open}}
193+
true => {{|| open (universal_db_path)}}
194+
false => {{|| stor open}}
195195
}
196196
}
197197

0 commit comments

Comments
 (0)