Skip to content

Commit a3a5a66

Browse files
authored
Merge pull request #154 from bubba/remove-lsp-flag
Remove unused lsp flag
2 parents fc1c26c + 9590dae commit a3a5a66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hie-vscode.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ export HIE_SERVER_PATH=`which hie`
44
export HIE_WRAPPER_PATH=`which hie-wrapper`
55

66
if [ ! "X" = "X$HIE_WRAPPER_PATH" ]; then
7-
hie-wrapper --lsp $@
7+
hie-wrapper $@
88
elif [ "X" = "X$HIE_SERVER_PATH" ]; then
99
echo "Content-Length: 100\r\n\r"
1010
echo '{"jsonrpc":"2.0","id":1,"error":{"code":-32099,"message":"Cannot find hie.exe in the path"}}'
1111
exit 1
1212
fi
1313

1414
# Run directly
15-
hie --lsp $@
15+
hie $@
1616
#hie --lsp
1717

1818
# Run with a log

0 commit comments

Comments
 (0)