Skip to content

Commit 4b82839

Browse files
authored
Added missing ? (nushell#511)
1 parent 7df4159 commit 4b82839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/filesystem/bm.nu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def get_path [] {
2929
default (
3030
$env.XDG_DATA_HOME? |
3131
default (
32-
$env.HOME | path join ".local" "share" |
32+
$env.HOME? | path join ".local" "share" |
3333
default (
3434
$env.USERPROFILE? | path join "bm"
3535
)

0 commit comments

Comments
 (0)