File tree 2 files changed +4
-11
lines changed
apps/elixir_ls_utils/priv
2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 1
1
### Unreleased
2
2
3
+ Bug Fixes:
4
+ - Revert "Make wrapper script more robust" (thanks [ Jason Axelson] ( https://github.com/axelson ) ) [ #471 ] ( https://github.com/elixir-lsp/elixir-ls/pull/471 )
5
+
3
6
### v0.6.3: 30 January 2021
4
7
5
8
Improvements:
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
# Launches the language server. This script must be in the same directory as the compiled .ez archives.
3
3
4
- readlink_f () {
5
- cd " $( dirname " $1 " ) " > /dev/null
6
- filename=" $( basename " $1 " ) "
7
- if [ -h " $filename " ]; then
8
- readlink_f " $( readlink " $filename " ) "
9
- else
10
- echo " $( pwd -P) /$filename "
11
- fi
12
- }
13
-
14
- dir=$( dirname $( readlink_f " $0 " ) )
4
+ dir=$( dirname " $0 " )
15
5
16
6
export ELS_MODE=language_server
17
7
export ELS_SCRIPT=" ElixirLS.LanguageServer.CLI.main()"
You can’t perform that action at this time.
0 commit comments