From bde0eddaeaa6e54d2c1a9ee6264cd3a25598c0c1 Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Mon, 3 Feb 2020 12:14:16 -0800 Subject: [PATCH] =?UTF-8?q?dist/freedoom:=20use=20=E2=80=9C/usr/bin/env?= =?UTF-8?q?=E2=80=9D=20for=20finding=20bash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not all systems (FreeBSD or Mac OS X, as examples) have a bash installed at /bin/bash. Using /usr/bin/env is a OS-portable way to invoke a script. --- dist/freedoom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/freedoom b/dist/freedoom index 0b045ced..91194a3f 100755 --- a/dist/freedoom +++ b/dist/freedoom @@ -1,4 +1,4 @@ -#!/bin/bash - +#!/usr/bin/env bash # These ports should be ordered by ease-of-use, of which menu # simplicity and support for high-resolution take high priority.