-
Notifications
You must be signed in to change notification settings - Fork 6k
Searching does not work with EACCES error #1666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Can confirm, having the same issue using the NPM installed version of code-server. This also breaks certain extensions like Todo Tree... For the NPM install the directory is slightly different: |
Fixing now, sorry about this! |
Duplicate of #1665 |
Hi, sorry for the duplicate. |
Reproduced with docker installation in version 3.3.0.
When trying to search (Ctrl+Shift+F) an error appears:
spawn /usr/lib/code-server/lib/vscode/node_modules/vscode-ripgrep/bin/rg EACCES
Looking inside the container I see that the binary under the path mentioned does not have execute permissions:
Granting the necessary execute permissions fixes the issue:
chmod +x /usr/lib/code-server/lib/vscode/node_modules/vscode-ripgrep/bin/rg
The text was updated successfully, but these errors were encountered: