diff options
author | Fionn Langhans <fionn.langhans@gmail.com> | 2022-12-12 20:18:25 +0000 |
---|---|---|
committer | Fionn Langhans <fionn.langhans@gmail.com> | 2022-12-12 20:27:46 +0000 |
commit | cb64439f41bfaec168704751609d4afa47d6f2e9 (patch) | |
tree | a77b297a79afb32e32381924e52e286cd528c75d | |
parent | 685f9631b56ff8bd43bce24ff5ce0f9a0e9af490 (diff) | |
download | stable-diffusion-webui-gfx803-cb64439f41bfaec168704751609d4afa47d6f2e9.tar.gz stable-diffusion-webui-gfx803-cb64439f41bfaec168704751609d4afa47d6f2e9.tar.bz2 stable-diffusion-webui-gfx803-cb64439f41bfaec168704751609d4afa47d6f2e9.zip |
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).
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 # |