From 984b8f7e6f0661797ca91a8cc758781eaab2d4ca Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Wed, 26 Oct 2022 18:28:21 +0530 Subject: [PATCH] No need to generate arch-specific installers --- build.bat | 8 +++----- build.sh | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/build.bat b/build.bat index 64d4f944..6e3f3f81 100644 --- a/build.bat +++ b/build.bat @@ -34,14 +34,12 @@ echo. > dist\win\stable-diffusion-ui\scripts\install_status.txt @rem make the zip cd dist\win -call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-win-x64.zip +call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-windows.zip cd ..\.. @REM cd dist\linux-mac -@REM call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-linux-x64.zip -@REM call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-linux-arm64.zip -@REM call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-mac-x64.zip -@REM call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-mac-arm64.zip +@REM call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-linux.zip +@REM call powershell Compress-Archive -Path stable-diffusion-ui -DestinationPath ..\stable-diffusion-ui-mac.zip @REM cd ..\.. echo "Build ready. Upload the zip files inside the 'dist' folder." diff --git a/build.sh b/build.sh index 6b493330..dc4a5047 100755 --- a/build.sh +++ b/build.sh @@ -37,14 +37,12 @@ echo "" > dist/linux-mac/stable-diffusion-ui/scripts/install_status.txt # make the zip # cd dist/win -# zip -r ../stable-diffusion-ui-win-x64.zip stable-diffusion-ui +# zip -r ../stable-diffusion-ui-windows.zip stable-diffusion-ui # cd ../.. cd dist/linux-mac -zip -r ../stable-diffusion-ui-linux-x64.zip stable-diffusion-ui -zip -r ../stable-diffusion-ui-linux-arm64.zip stable-diffusion-ui -zip -r ../stable-diffusion-ui-mac-x64.zip stable-diffusion-ui -zip -r ../stable-diffusion-ui-mac-arm64.zip stable-diffusion-ui +zip -r ../stable-diffusion-ui-linux.zip stable-diffusion-ui +zip -r ../stable-diffusion-ui-mac.zip stable-diffusion-ui cd ../.. echo "Build ready. Upload the zip files inside the 'dist' folder."