georgewfraser / java-language-server

Java language server using the Java compiler API
MIT License
642 stars 126 forks source link

fix: Adjust shebang to point to `/usr/bin/env bash` #251

Closed Chaostheorie closed 1 year ago

Chaostheorie commented 1 year ago

It's recommended to point the shebang for bash scripts to /usr/bin/env bash instead of /bin/bash to account for systems that may have a non-standard binary layout, like, e.g., NixOS. This patch adjust the install scripts to properly handle these cases.