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:
Marshall Bowers 2024-07-19 14:17:04 -04:00 committed by GitHub
parent f4074d784c
commit ee0dfe9c44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {