You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently install.sh in the root of the repo uses #!/bin/sh, which doesn't work on some distros or shells, which is why it would be better to set the shebang to #!/usr/bin/env bash, since (almost) every distro has the env binary in this path, which would also run the script with bash.
The text was updated successfully, but these errors were encountered:
currently install.sh in the root of the repo uses
#!/bin/sh
, which doesn't work on some distros or shells, which is why it would be better to set the shebang to#!/usr/bin/env bash
, since (almost) every distro has the env binary in this path, which would also run the script with bash.The text was updated successfully, but these errors were encountered: