Remove redundant spaces.

This commit is contained in:
w0rp 2018-06-20 22:44:56 +01:00 committed by GitHub
parent d7efb13203
commit b8be25adb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ function! ale_linters#elixir#mix#GetCommand(buffer) abort
let l:temp_dir = ale#engine#CreateDirectory(a:buffer)
let l:mix_build_path = has('win32')
\ ? 'set MIX_BUILD_PATH=' . ale#Escape(l:temp_dir) . ' && '
\ : 'MIX_BUILD_PATH=' . ale#Escape(l:temp_dir) . ' '
\ ? 'set MIX_BUILD_PATH=' . ale#Escape(l:temp_dir) . ' &&'
\ : 'MIX_BUILD_PATH=' . ale#Escape(l:temp_dir)
return ale#path#CdString(l:project_root)
\ . l:mix_build_path