easydiffusion/scripts/on_env_start.sh

29 lines
1.2 KiB
Bash
Raw Normal View History

2022-09-03 14:25:38 +02:00
printf "\n\nStable Diffusion UI\n\n"
2022-09-02 18:24:32 +02:00
2022-09-03 14:38:52 +02:00
if [ -f "scripts/install_status.txt" ] && [ `grep -c sd_ui_git_cloned scripts/install_status.txt` -gt "0" ]; then
2022-09-02 18:24:32 +02:00
echo "Stable Diffusion UI's git repository was already installed. Updating.."
cd sd-ui-files
git reset --hard
git pull
cd ..
else
2022-09-03 14:25:38 +02:00
printf "\n\nDownloading Stable Diffusion UI..\n\n"
2022-09-02 18:24:32 +02:00
if git clone https://github.com/cmdr2/stable-diffusion-ui.git sd-ui-files ; then
echo sd_ui_git_cloned >> scripts/install_status.txt
else
printf "\n\nError downloading Stable Diffusion UI. Sorry about that, please try to:\n 1. Run this installer again.\n 2. If that doesn't fix it, please try the common troubleshooting steps at https://github.com/cmdr2/stable-diffusion-ui/blob/main/Troubleshooting.md\n 3. If those steps don't help, please copy *all* the error messages in this window, and ask the community at https://discord.com/invite/u9yhsFmEkB\n 4. If that doesn't solve the problem, please file an issue at https://github.com/cmdr2/stable-diffusion-ui/issues\nThanks!\n\n"
2022-09-02 18:24:32 +02:00
read -p "Press any key to continue"
exit
fi
fi
cp -Rf sd-ui-files/ui ui
2022-09-03 09:04:23 +02:00
cp -Rf sd-ui-files/scripts/* scripts/
cp "scripts/start.sh" .
2022-09-02 18:24:32 +02:00
./scripts/on_sd_start.sh