You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the logs the issue seems to be that ~/.local/share/zed/extensions/work/kotlin/kotlin-language-server-1.3.12/server/bin/kotlin-language-server isn't executable.
I did some digging and the cause seems to be zed-industries/zed#13869, because smol::fs::File::create by default sets the file's permissions to -rw-r--r--, whereas unzip carries over the file's permissions from the zip archive.
The text was updated successfully, but these errors were encountered:
Resolves#19
Draft because I'm unsure this repo is the correct place to fix the
issue. Maybe it should be `zed::download_file`'s job to carry over file
permissions when extracting a zip file.
Note that `zed::make_file_executable` is a noop on non-unix platforms,
so it shouldn't be an issue to call it here.
Only tested on Linux.
From the logs the issue seems to be that
~/.local/share/zed/extensions/work/kotlin/kotlin-language-server-1.3.12/server/bin/kotlin-language-server
isn't executable.I did some digging and the cause seems to be zed-industries/zed#13869, because
smol::fs::File::create
by default sets the file's permissions to-rw-r--r--
, whereasunzip
carries over the file's permissions from the zip archive.The text was updated successfully, but these errors were encountered: