elixir: Make `start_lexical.sh` executable (#14831)

Marshall Bowers created

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

Change summary

extensions/elixir/src/language_servers/lexical.rs | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

extensions/elixir/src/language_servers/lexical.rs 🔗

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