georgewfraser / java-language-server

Java language server using the Java compiler API
MIT License
657 stars 130 forks source link

chore: Adjust shebang for better compatibility #252

Closed Chaostheorie closed 1 year ago

Chaostheorie commented 1 year ago

The shebang in the Bash install scripts is currently pointing to /bin/bash. This will lead to problems when running on systems that employ a non-standard layout for the binaries like, e.g., NixOS.

251 contains a patch fixing this by replacing /bin/bash with /usr/bin/env bash. release.sh was not changed because it didn't contain a shebang.

Chaostheorie commented 1 year ago

Fixed in #251