From 9a1fe8e7fbbd81d9e9e47c4fda6bde6f66fba30c Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Sat, 12 Nov 2022 17:07:40 +0000 Subject: [PATCH] swap in release URLs for installers --- installer/install.bat | 2 +- installer/install.sh | 2 +- source_installer/install.bat | 2 +- source_installer/install.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/installer/install.bat b/installer/install.bat index 33b6f6dc65..7fd6e0459d 100644 --- a/installer/install.bat +++ b/installer/install.bat @@ -19,7 +19,7 @@ set INSTALL_ENV_DIR=%cd%\installer_files\env @rem https://mamba.readthedocs.io/en/latest/installation.html set MICROMAMBA_DOWNLOAD_URL=https://github.com/cmdr2/stable-diffusion-ui/releases/download/v1.1/micromamba.exe set RELEASE_URL=https://github.com/invoke-ai/InvokeAI -set RELEASE_SOURCEBALL=/archive/refs/heads/release-candidate-2-1-3.tar.gz +set RELEASE_SOURCEBALL=/archive/refs/heads/v2.1.3.tar.gz set PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download set PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz diff --git a/installer/install.sh b/installer/install.sh index f81f418e22..c104b2e80d 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -74,7 +74,7 @@ fi INSTALL_ENV_DIR="$(pwd)/installer_files/env" MICROMAMBA_DOWNLOAD_URL="https://micro.mamba.pm/api/micromamba/${MAMBA_OS_NAME}-${MAMBA_ARCH}/latest" RELEASE_URL=https://github.com/invoke-ai/InvokeAI -RELEASE_SOURCEBALL=/archive/refs/heads/release-candidate-2-1-3.tar.gz +RELEASE_SOURCEBALL=/archive/refs/heads/v2.1.3.tar.gz PYTHON_BUILD_STANDALONE_URL=https://github.com/indygreg/python-build-standalone/releases/download if [ "$OS_NAME" == "darwin" ]; then PYTHON_BUILD_STANDALONE=20221002/cpython-3.10.7+20221002-${PY_ARCH}-apple-darwin-install_only.tar.gz diff --git a/source_installer/install.bat b/source_installer/install.bat index bd1cf8176d..eaace2c084 100644 --- a/source_installer/install.bat +++ b/source_installer/install.bat @@ -72,7 +72,7 @@ if not exist ".git" ( call git config --local init.defaultBranch main call git remote add origin %REPO_URL% call git fetch - call git checkout origin/release-candidate-2-1-3 -ft + call git checkout origin/main -ft ) @rem activate the base env diff --git a/source_installer/install.sh b/source_installer/install.sh index a6b72b15bb..747d701611 100755 --- a/source_installer/install.sh +++ b/source_installer/install.sh @@ -86,7 +86,7 @@ if [ ! -e ".git" ]; then git config --local init.defaultBranch main git remote add origin "$REPO_URL" git fetch - git checkout origin/release-candidate-2-1-3 -ft + git checkout origin/main -ft fi # create the environment