summaryrefslogtreecommitdiff
path: root/ale_linters/sh
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-05-03 00:27:55 +0100
committerGitHub <noreply@github.com>2017-05-03 00:27:55 +0100
commit858c1c47ae623876453760d0a0cbab8bb72e6fef (patch)
tree1c656075440aacb5662cf770845ea31c63f1afd6 /ale_linters/sh
parent3573975934f12588e431d902bb477429f635c747 (diff)
parent768a5e7421e59fb1ceb7ac07d58453e0bfc2e327 (diff)
downloadale-858c1c47ae623876453760d0a0cbab8bb72e6fef.zip
Merge pull request #524 from adriaanzon/fix-defaulting-to-fish
shell: Don't default to fish
Diffstat (limited to 'ale_linters/sh')
-rw-r--r--ale_linters/sh/shell.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/sh/shell.vim b/ale_linters/sh/shell.vim
index 3b017b0e..1539e8b3 100644
--- a/ale_linters/sh/shell.vim
+++ b/ale_linters/sh/shell.vim
@@ -11,7 +11,7 @@ endif
if !exists('g:ale_sh_shell_default_shell')
let g:ale_sh_shell_default_shell = fnamemodify($SHELL, ':t')
- if g:ale_sh_shell_default_shell ==# ''
+ if g:ale_sh_shell_default_shell ==# '' || g:ale_sh_shell_default_shell ==# 'fish'
let g:ale_sh_shell_default_shell = 'bash'
endif
endif