mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00: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.."
|