mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ci: allow older git versions when using lintcommit
More specifically, use "git rev-parse --abbrev-ref HEAD" instead of "git branch --show-current" to get current branch.
This commit is contained in:
parent
6b9cb665fa
commit
35c13620a1
@ -106,7 +106,7 @@ end
|
||||
function M.main(opt)
|
||||
_trace = not opt or not not opt.trace
|
||||
|
||||
local branch = run({'git', 'branch', '--show-current'}, true)
|
||||
local branch = run({'git', 'rev-parse', '--abbrev-ref', 'HEAD'}, true)
|
||||
-- TODO(justinmk): check $GITHUB_REF
|
||||
local ancestor = run({'git', 'merge-base', 'origin/master', branch})
|
||||
if not ancestor then
|
||||
|
Loading…
Reference in New Issue
Block a user