summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-02-05 12:00:30 +0800
committerGitHub <noreply@github.com>2023-02-05 12:00:30 +0800
commit118005b2d3a60778e15a5ca10e7905449c70ad73 (patch)
tree4968a61fce45baba48432e3803e56dabe26d2e4a
parent6bb46b67ef8242cb11b928bc9940833ca5a034e6 (diff)
parent8d74a58c8d3c00d7917899c4d1d6dbc9f2e8a73d (diff)
Merge pull request #214666 from bobby285271/fix/vscode
vscode: Fix missing executable permissions
-rw-r--r--pkgs/applications/editors/vscode/generic.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vscode/generic.nix b/pkgs/applications/editors/vscode/generic.nix
index 1b4f4508fbf0..c2036566b384 100644
--- a/pkgs/applications/editors/vscode/generic.nix
+++ b/pkgs/applications/editors/vscode/generic.nix
@@ -135,6 +135,9 @@ let
# this fixes bundled ripgrep
chmod +x resources/app/node_modules/@vscode/ripgrep/bin/rg
+
+ # see https://github.com/gentoo/gentoo/commit/4da5959
+ chmod +x resources/app/node_modules/node-pty/build/Release/spawn-helper
'';
inherit meta;