aboutsummaryrefslogtreecommitdiff
path: root/webui.sh
diff options
context:
space:
mode:
authorFionn Langhans <fionn.langhans@gmail.com>2022-12-12 21:18:25 +0100
committerFionn Langhans <fionn.langhans@gmail.com>2022-12-12 21:27:46 +0100
commitcb64439f41bfaec168704751609d4afa47d6f2e9 (patch)
treea77b297a79afb32e32381924e52e286cd528c75d /webui.sh
parent685f9631b56ff8bd43bce24ff5ce0f9a0e9af490 (diff)
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).
Diffstat (limited to 'webui.sh')
-rwxr-xr-xwebui.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui.sh b/webui.sh
index 683c97d3..04ecbf76 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 #