summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-08-18 19:33:23 +0100
committerw0rp <devw0rp@gmail.com>2017-08-18 19:33:23 +0100
commit41c4f3431c1a5ae2da8b0b859a92dbddc9fe7534 (patch)
tree64b5f836767ea7441f2252fc403f4669af9bb5c2
parent2560cdd56ea9117b45bd9a9c5f8e5b9b3025fce2 (diff)
downloadale-41c4f3431c1a5ae2da8b0b859a92dbddc9fe7534.zip
Fix #858 - Fix the stack ghc-mod command
-rw-r--r--ale_linters/haskell/ghc-mod.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/haskell/ghc-mod.vim b/ale_linters/haskell/ghc-mod.vim
index 35f94c33..1b15d8c2 100644
--- a/ale_linters/haskell/ghc-mod.vim
+++ b/ale_linters/haskell/ghc-mod.vim
@@ -11,6 +11,6 @@ call ale#linter#Define('haskell', {
call ale#linter#Define('haskell', {
\ 'name': 'stack-ghc-mod',
\ 'executable': 'stack',
-\ 'command': 'stack exec ghc-mod --map-file %s=%t check %s',
+\ 'command': 'stack exec ghc-mod -- --map-file %s=%t check %s',
\ 'callback': 'ale#handlers#haskell#HandleGHCFormat',
\})