fix: branch assumes git file will be correctly formated
This commit is contained in:
parent
1cbf0686b4
commit
fa1f001207
|
@ -62,15 +62,17 @@ function Branch.find_git_dir()
|
||||||
git_dir = git_dir:match('gitdir: (.+)$')
|
git_dir = git_dir:match('gitdir: (.+)$')
|
||||||
file:close()
|
file:close()
|
||||||
-- submodule / relative file path
|
-- submodule / relative file path
|
||||||
if git_dir:sub(1, 1) ~= Branch.sep and not git_dir:match('^%a:.*$') then
|
if git_dir and git_dir:sub(1, 1) ~= Branch.sep and not git_dir:match('^%a:.*$') then
|
||||||
git_dir = git_path:match('(.*).git') .. git_dir
|
git_dir = git_path:match('(.*).git') .. git_dir
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if git_dir then
|
||||||
local head_file_stat = vim.loop.fs_stat(git_dir..Branch.sep..'HEAD')
|
local head_file_stat = vim.loop.fs_stat(git_dir..Branch.sep..'HEAD')
|
||||||
if head_file_stat and head_file_stat.type == 'file' then
|
if head_file_stat and head_file_stat.type == 'file' then
|
||||||
break
|
break
|
||||||
else git_dir = nil end
|
else git_dir = nil end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
root_dir = root_dir:match('(.*)'..Branch.sep..'.-')
|
root_dir = root_dir:match('(.*)'..Branch.sep..'.-')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue