spolu / breach_core

A Browser written in JS. Free. Modular. Hackable.
https://breach.github.io/breach_core/
MIT License
5.39k stars 411 forks source link

Update Shebang in Linux Wrapper Script to /usr/bin/env bash #133

Closed azenla closed 10 years ago

azenla commented 10 years ago

Updates the Shebang Line to

#!/usr/bin/env bash

This is necessary because bash is not guaranteed to be in /bin but env is guaranteed to be in /usr/bin, therefore letting the environment be used to find the bash executable is appropriate.

spolu commented 10 years ago

OK! Thanks!