From 53b29c19c3f69e44821b8eb42e936ba311139a36 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Tue, 28 Jun 2016 21:35:01 -0600 Subject: [PATCH] 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. --- rofi-pass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rofi-pass b/rofi-pass index b372030..1aa979a 100755 --- a/rofi-pass +++ b/rofi-pass @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # rofi-pass # (c) 2015 Rasmus Steinke