Update the Docker image; fix an error

This commit is contained in:
w0rp 2021-01-14 20:24:19 +00:00
parent f398faa8d3
commit 8dce126a6c
No known key found for this signature in database
GPG Key ID: 0FC1ECAA8C81CD83
2 changed files with 4 additions and 3 deletions

View File

@ -25,7 +25,8 @@ function! ale_linters#salt#salt_lint#Handle(buffer, lines) abort
endfunction
call ale#linter#Define('salt', {
\ 'name': 'salt-lint',
\ 'name': 'salt_lint',
\ 'aliases': ['salt-lint'],
\ 'executable': {b -> ale#Var(b, 'salt_salt_lint_executable')},
\ 'command': function('ale_linters#salt#salt_lint#GetCommand'),
\ 'callback': 'ale_linters#salt#salt_lint#Handle'

View File

@ -9,8 +9,8 @@ set -u
# options, or read the output below.
#
image=akevinclark/ale
current_image_id=8e1802ca34b5
image=w0rp/ale
current_image_id=1c04720f5d17
# Used in all test scripts for running the selected Docker image.
DOCKER_RUN_IMAGE="$image"