mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 09:49:12 +08:00
fix prompt branch for git worktree
This commit is contained in:
parent
0616ff0a82
commit
6189f4f0e6
6
vendor/clink.lua
vendored
6
vendor/clink.lua
vendored
@ -256,6 +256,12 @@ local function get_git_dir(path)
|
|||||||
local git_dir = gitfile:read():match('gitdir: (.*)')
|
local git_dir = gitfile:read():match('gitdir: (.*)')
|
||||||
gitfile:close()
|
gitfile:close()
|
||||||
|
|
||||||
|
if os.isdir then -- only available in Clink v1.0.0 and higher
|
||||||
|
if git_dir and os.isdir(git_dir) then
|
||||||
|
return git_dir
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return git_dir and dir..'/'..git_dir
|
return git_dir and dir..'/'..git_dir
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user