Skip to content

Commit 59f15ef

Browse files
authored
fix: work around bug in Nushell on Windows (#564)
1 parent 1c17422 commit 59f15ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/rustaceanvim/shell.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ end
4444
---@param path string
4545
---@return string
4646
function M.make_cd_command(path)
47-
return ('cd "%s"'):format(path)
47+
return ("cd '%s'"):format(path)
4848
end
4949

5050
---@param command string

0 commit comments

Comments
 (0)