diff options
author | Ben Reedy <breed808@breed808.com> | 2017-04-13 18:58:55 +1000 |
---|---|---|
committer | Ben Reedy <breed808@breed808.com> | 2017-04-13 18:58:55 +1000 |
commit | a2bb45e974846cf98d1cecf956565357763581ee (patch) | |
tree | 099fdeb1590372c2de9bbea13f2aa40340723dba /ale_linters | |
parent | e2287a42bce9080ed42b46cc9e8d544838236ec1 (diff) | |
download | ale-a2bb45e974846cf98d1cecf956565357763581ee.zip |
Fix gobuild linter
Resolves issues with gobuild linter with multiple go source files
belonging to the same go package.
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/go/gobuild.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/go/gobuild.vim b/ale_linters/go/gobuild.vim index a40565d6..5187c682 100644 --- a/ale_linters/go/gobuild.vim +++ b/ale_linters/go/gobuild.vim @@ -18,8 +18,8 @@ function! ale_linters#go#gobuild#GetCommand(buffer, goenv_output) abort \ 'GOROOT': a:goenv_output[1], \} endif - - return 'GOPATH=' . s:go_env.GOPATH . ' go test -c -o /dev/null %s' + " Run go test in local directory with relative path + return 'GOPATH=' . s:go_env.GOPATH . ' cd ' . fnamemodify(bufname(a:buffer), ':.:h') . ' && go test -c -o /dev/null ./' endfunction function! ale_linters#go#gobuild#Handler(buffer, lines) abort |