mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-15 06:58:13 -05:00
23 lines
456 B
Bash
Executable File
23 lines
456 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-linux.zip invokeAI
|
|
zip -r invokeAI-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-windows.zip invokeAI
|
|
|
|
echo "The installer zips are ready to be distributed.."
|