mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 08:13:22 +01:00
46 lines
1.1 KiB
Bash
Executable File
46 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
source ./scripts/functions.sh
|
|
|
|
printf "\n\nStable Diffusion UI\n\n"
|
|
|
|
if [ -f "scripts/config.sh" ]; then
|
|
source scripts/config.sh
|
|
fi
|
|
|
|
if [ "$update_branch" == "" ]; then
|
|
export update_branch="main"
|
|
fi
|
|
|
|
if [ -f "scripts/install_status.txt" ] && [ `grep -c sd_ui_git_cloned scripts/install_status.txt` -gt "0" ]; then
|
|
echo "Stable Diffusion UI's git repository was already installed. Updating from $update_branch.."
|
|
|
|
cd sd-ui-files
|
|
|
|
git reset --hard
|
|
git -c advice.detachedHead=false checkout "$update_branch"
|
|
git pull
|
|
|
|
cd ..
|
|
else
|
|
printf "\n\nDownloading Stable Diffusion UI..\n\n"
|
|
printf "Using the $update_branch channel\n\n"
|
|
|
|
if git clone -b "$update_branch" https://github.com/cmdr2/stable-diffusion-ui.git sd-ui-files ; then
|
|
echo sd_ui_git_cloned >> scripts/install_status.txt
|
|
else
|
|
fail "git clone failed"
|
|
fi
|
|
fi
|
|
|
|
rm -rf ui
|
|
cp -Rf sd-ui-files/ui .
|
|
cp sd-ui-files/scripts/on_sd_start.sh scripts/
|
|
cp sd-ui-files/scripts/bootstrap.sh scripts/
|
|
cp sd-ui-files/scripts/start.sh .
|
|
cp sd-ui-files/scripts/developer_console.sh .
|
|
|
|
./scripts/on_sd_start.sh
|
|
|
|
read -p "Press any key to continue"
|