mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
31 lines
726 B
Bash
Executable File
31 lines
726 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
echo "Be certain that you're in the 'installer' directory before continuing."
|
|
read -p "Press any key to continue, or CTRL-C to exit..."
|
|
|
|
# make the installer zip for linux and mac
|
|
rm -rf InvokeAI
|
|
mkdir -p InvokeAI
|
|
cp install.sh.in InvokeAI/install.sh
|
|
chmod a+x InvokeAI/install.sh
|
|
cp readme.txt InvokeAI
|
|
|
|
zip -r InvokeAI-binary-linux.zip InvokeAI
|
|
zip -r InvokeAI-binary-mac.zip InvokeAI
|
|
|
|
# make the installer zip for windows
|
|
rm -rf InvokeAI
|
|
mkdir -p InvokeAI
|
|
cp install.bat.in InvokeAI/install.bat
|
|
cp readme.txt InvokeAI
|
|
cp WinLongPathsEnabled.reg InvokeAI
|
|
|
|
zip -r InvokeAI-binary-windows.zip InvokeAI
|
|
|
|
rm -rf InvokeAI
|
|
|
|
echo "The installer zips are ready for distribution."
|