belluzj / fantasque-sans

A font family with a great monospaced variant for programmers.
http://openfontlibrary.org/en/font/fantasque-sans-mono
SIL Open Font License 1.1
6.98k stars 154 forks source link

shebang fix #33

Closed rpdelaney closed 10 years ago

rpdelaney commented 10 years ago
  1. /bin/bash does not exist on all systems. However, /usr/bin/env does.
  2. If a file runs in bash and not sh, it should not have the .sh extension: some shells may interpret files with this extension as sh and not bash regardless of the shebang.
belluzj commented 10 years ago

Thanks for you contributions.