mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 20:01:33 +00:00
elixir: Make start_lexical.sh
executable (#14831)
This PR fixes an issue in the Lexical language server installation where the `start_lexical.sh` script was not being made executable when installed from GitHub. Release Notes: - N/A
This commit is contained in:
parent
f4074d784c
commit
ee0dfe9c44
1 changed files with 2 additions and 0 deletions
|
@ -94,6 +94,8 @@ impl Lexical {
|
|||
)
|
||||
.map_err(|e| format!("failed to download file: {e}"))?;
|
||||
|
||||
zed::make_file_executable(&binary_path)?;
|
||||
|
||||
let entries =
|
||||
fs::read_dir(".").map_err(|e| format!("failed to list working directory {e}"))?;
|
||||
for entry in entries {
|
||||
|
|
Loading…
Reference in a new issue