From 9830c3522ca2a08eb0845bc1106bf6b1378f767c Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Sun, 11 Aug 2024 10:04:36 -0700 Subject: [PATCH] Make ruby-lsp-activate.sh executable My local shell was ignoring the shebang since it wasn't executable and trying to load it with fish which failed. Making the script executable solved that problem. ```console $ chmod +ux .vscode/ruby-lsp-activate.sh ``` --- .vscode/ruby-lsp-activate.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 .vscode/ruby-lsp-activate.sh diff --git a/.vscode/ruby-lsp-activate.sh b/.vscode/ruby-lsp-activate.sh old mode 100644 new mode 100755