Skip to content

Commit

Permalink
Bugfix: Use /usr/bin/env bash instead of just /bin/bash
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
codefionn committed Dec 12, 2022
1 parent 685f963 commit cb64439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui.sh
Original file line number Diff line number Diff line change
@@ -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 #
Expand Down

0 comments on commit cb64439

Please sign in to comment.