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).
This commit is contained in:
Fionn Langhans 2022-12-12 21:18:25 +01:00
parent 685f9631b5
commit cb64439f41
No known key found for this signature in database
GPG Key ID: CC48D2C1C964C022

@ -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 #