diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-18 12:07:14 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-18 12:07:14 +0000 |
commit | 7476593014404314f06928ee500bc281a51de5cd (patch) | |
tree | ca2e3a1d8c662205a82ba44b879dc9763876a85b /webui.sh | |
parent | 9e892d90ceaa6493d8b9092c89017485bb658c5b (diff) | |
download | stable-diffusion-webui-gfx803-7476593014404314f06928ee500bc281a51de5cd.tar.gz stable-diffusion-webui-gfx803-7476593014404314f06928ee500bc281a51de5cd.tar.bz2 stable-diffusion-webui-gfx803-7476593014404314f06928ee500bc281a51de5cd.zip |
change () to "" in .sh scripts because export AAA=(BBB CCC) sets AAA to BBB and does not export anything
whoever put that in .sh files - shame on you
Diffstat (limited to 'webui.sh')
-rw-r--r-- | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ fi # install command for torch if [[ -z "${TORCH_COMMAND}" ]] then - export TORCH_COMMAND=(python3 -m pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113) + export TORCH_COMMAND="python3 -m pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113" fi # Do not reinstall existing pip packages on Debian/Ubuntu |