Merge pull request #2653 from AntoineGagne/bugfix/bugged-plt-detection

Fix bug with detection of the PLT in Erlang Dialyzer
This commit is contained in:
w0rp
2019-09-19 20:35:54 +01:00
committed by GitHub

View File

@@ -15,10 +15,10 @@ endfunction
function! ale_linters#erlang#dialyzer#FindPlt(buffer) abort function! ale_linters#erlang#dialyzer#FindPlt(buffer) abort
let l:plt_file = '' let l:plt_file = ''
let l:rebar3_profile = ale_linters#erlang#dialyzer#GetRebar3Profile(a:buffer) let l:rebar3_profile = ale_linters#erlang#dialyzer#GetRebar3Profile(a:buffer)
let l:plt_file_directory = ale#path#FindNearestDirectory(a:buffer, '_build' . l:rebar3_profile) let l:plt_file_directory = ale#path#FindNearestDirectory(a:buffer, '_build/' . l:rebar3_profile)
if !empty(l:plt_file_directory) if !empty(l:plt_file_directory)
let l:plt_file = split(globpath(l:plt_file_directory, '/*_plt'), '\n') let l:plt_file = globpath(l:plt_file_directory, '*_plt', 0, 1)
endif endif
if !empty(l:plt_file) if !empty(l:plt_file)