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}"))?;
|
.map_err(|e| format!("failed to download file: {e}"))?;
|
||||||
|
|
||||||
|
zed::make_file_executable(&binary_path)?;
|
||||||
|
|
||||||
let entries =
|
let entries =
|
||||||
fs::read_dir(".").map_err(|e| format!("failed to list working directory {e}"))?;
|
fs::read_dir(".").map_err(|e| format!("failed to list working directory {e}"))?;
|
||||||
for entry in entries {
|
for entry in entries {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue