mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
18a947c503
- Have clarified the relationship between the @tildebyte and @cmdr2 installers; However, @tildebyte installer merge is still a WIP due to conflicts over such things as `invoke.sh`. - Rechristened 1click installer as "source" installer. @tildebyte installer will be "the" installer. (We'll see which one generates the least support requests and maintenance work.) - Sync'd `environment-mac.yml` with `development`. The former was failing with a taming-transformers error as per https://discord.com/channels/@me/1037201214154231899/1040060947378749460
23 lines
468 B
Bash
Executable File
23 lines
468 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
# make the installer zip for linux and mac
|
|
rm -rf invokeAI
|
|
mkdir -p invokeAI
|
|
cp install.sh invokeAI
|
|
cp readme.txt invokeAI
|
|
|
|
zip -r invokeAI-src-linux.zip invokeAI
|
|
zip -r invokeAI-src-mac.zip invokeAI
|
|
|
|
# make the installer zip for windows
|
|
rm -rf invokeAI
|
|
mkdir -p invokeAI
|
|
cp install.bat invokeAI
|
|
cp readme.txt invokeAI
|
|
|
|
zip -r invokeAI-src-windows.zip invokeAI
|
|
|
|
echo "The installer zips are ready to be distributed.."
|