diff options
author | facu <zak.tux@gmail.com> | 2023-01-18 22:15:53 +0000 |
---|---|---|
committer | facu <zak.tux@gmail.com> | 2023-01-18 22:15:53 +0000 |
commit | 956263b8a4f0393dcb47ed497f367717add4f0e9 (patch) | |
tree | 0ffd160bb48c05430fa6a4d0f95638f2de75d860 /webui.sh | |
parent | bb0978ecfd3177d0bfd7cacd1ac8796d7eec2d79 (diff) | |
download | stable-diffusion-webui-gfx803-956263b8a4f0393dcb47ed497f367717add4f0e9.tar.gz stable-diffusion-webui-gfx803-956263b8a4f0393dcb47ed497f367717add4f0e9.tar.bz2 stable-diffusion-webui-gfx803-956263b8a4f0393dcb47ed497f367717add4f0e9.zip |
fixing error using lspci on macOsX
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -165,7 +165,7 @@ else printf "\n%s\n" "${delimiter}" printf "Launching launch.py..." printf "\n%s\n" "${delimiter}" - gpu_info=$(lspci | grep VGA) + gpu_info=$(lspci 2>/dev/null | grep VGA) if echo "$gpu_info" | grep -q "AMD" then if [[ -z "${TORCH_COMMAND}" ]] |