elixir: Make two more files required by lexical executable (#16382)

I still haven't fixed building dev extensions with rust managed by nix,
so I'd appreciate testing this for me

Release Notes:

- N/A
This commit is contained in:
Stanislav Alekseev 2024-08-20 01:48:05 +03:00 committed by GitHub
parent 9f66f12f7b
commit 8993a9f2ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,6 +95,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)?; zed::make_file_executable(&binary_path)?;
zed::make_file_executable(&format!("{version_dir}/lexical/bin/debug_shell.sh"))?;
zed::make_file_executable(&format!("{version_dir}/lexical/priv/port_wrapper.sh"))?;
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}"))?;