remove static path to bash

Not all systems install bash into /bin (FreeBSD and OpenBSD for example).

This switches to `env` which lets us find bash anywhere in $PATH. `/usr/bin/env` exists on virtually every system claiming to be POSIX compliant.
This commit is contained in:
Aaron Bieber 2016-06-28 21:35:01 -06:00 committed by GitHub
parent f7093d1da0
commit 53b29c19c3

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# rofi-pass # rofi-pass
# (c) 2015 Rasmus Steinke <rasi@xssn.at> # (c) 2015 Rasmus Steinke <rasi@xssn.at>