From 07c3c57cde550eb2f4e884900286d041bfb6301a Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Sun, 30 Oct 2022 12:13:11 -0400 Subject: [PATCH] folded in the 1-click installer - The installer will pull from the branch release-candidate-2-1 for the purposes of testing. - This needs to be changed to "main" before release. --- installer/install.bat | 2 +- installer/install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/install.bat b/installer/install.bat index 508c9ced4f..157ab7f0e1 100644 --- a/installer/install.bat +++ b/installer/install.bat @@ -16,7 +16,7 @@ echo. set MAMBA_ROOT_PREFIX=%cd%\installer_files\mamba set INSTALL_ENV_DIR=%cd%\installer_files\env set MICROMAMBA_DOWNLOAD_URL=https://github.com/cmdr2/stable-diffusion-ui/releases/download/v1.1/micromamba.exe -set REPO_URL=https://github.com/cmdr2/InvokeAI.git +set REPO_URL=https://github.com/invoke-ai/InvokeAI.git set umamba_exists=F @rem Change the download URL to an InvokeAI repo's release URL diff --git a/installer/install.sh b/installer/install.sh index ea576ddda9..a0bff22268 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -35,7 +35,7 @@ if [ "$OS_NAME" == "linux" ] && [ "$OS_ARCH" == "arm64" ]; then OS_ARCH="aarch64 export MAMBA_ROOT_PREFIX="$(pwd)/installer_files/mamba" INSTALL_ENV_DIR="$(pwd)/installer_files/env" MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${OS_NAME}-${OS_ARCH}/latest" -REPO_URL="https://github.com/cmdr2/InvokeAI.git" +REPO_URL="https://github.com/invoke-ai/InvokeAI.git" umamba_exists="F" # figure out whether git and conda needs to be installed @@ -87,7 +87,7 @@ if [ ! -e ".git" ]; then git init git remote add origin "$REPO_URL" git fetch - git checkout origin/main -ft + git checkout origin/release-candidate-2-1 -ft fi # create the environment