diff --git a/src/kotlin.rs b/src/kotlin.rs index f6c0f7b..c15378b 100644 --- a/src/kotlin.rs +++ b/src/kotlin.rs @@ -59,6 +59,9 @@ impl KotlinExtension { zed::DownloadedFileType::Zip, ) .map_err(|e| format!("failed to download file error: {e}"))?; + + zed::make_file_executable(&binary_path) + .map_err(|e| format!("failed to make binary executable: {e}"))?; } self.cached_binary_path = Some(binary_path.clone());