Skip to content

Commit 5ac7f5f

Browse files
committed
Add Linux test
1 parent 7cf67be commit 5ac7f5f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

autoload/javaunit/util.vim

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ function! javaunit#util#ExecCMD(cmd)
3737
endfunction
3838

3939
function! s:EscapeCMD(cmd)
40-
return a:cmd
40+
if s:WINDOWS()
41+
return a:cmd
42+
else
43+
" todo
44+
return a:cmd
45+
endif
4146
endfunction
4247

4348
let &cpo = s:save_cpo

0 commit comments

Comments
 (0)