From cb64439f41bfaec168704751609d4afa47d6f2e9 Mon Sep 17 00:00:00 2001 From: Fionn Langhans Date: Mon, 12 Dec 2022 21:18:25 +0100 Subject: [PATCH] Bugfix: Use /usr/bin/env bash instead of just /bin/bash The problem: Some Linux distrubutions, like NixOS, use a non-standard filesystem. This causes the bash program to not be at /bin/bash (though /usr/bin/env is always there). --- webui.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.sh b/webui.sh index 683c97d..04ecbf7 100755 --- a/webui.sh +++ b/webui.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ################################################# # Please do not make any changes to this file, # # change the variables in webui-user.sh instead #