 9830c3522c
			
		
	
	
		9830c3522c
		
	
	
	
	
		
			
			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 ```
		
			
				
	
	
		
			8 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| HOMEBREW_PREFIX="$(cd "$(dirname "$0")"/../ && pwd)"
 | |
| 
 | |
| "${HOMEBREW_PREFIX}/bin/brew" install-bundler-gems --add-groups=style,typecheck,vscode >/dev/null 2>&1
 | |
| 
 | |
| export PATH="${HOMEBREW_PREFIX}/Library/Homebrew/vendor/portable-ruby/current/bin:${PATH}"
 | |
| export BUNDLE_WITH="style:typecheck:vscode"
 |