From 3f970c8326244d653a0b0acaf9c351a969593f9f Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Fri, 15 Dec 2023 11:27:21 -0500 Subject: [PATCH] Don't copy extraneous paths into installer .zip --- installer/create_installer.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/installer/create_installer.sh b/installer/create_installer.sh index ed8cbb0d0a..722fe5771a 100755 --- a/installer/create_installer.sh +++ b/installer/create_installer.sh @@ -91,9 +91,11 @@ rm -rf InvokeAI-Installer # copy content mkdir InvokeAI-Installer -for f in templates lib *.txt *.reg; do +for f in templates *.txt *.reg; do cp -r ${f} InvokeAI-Installer/ done +mkdir InvokeAI-Installer/lib +cp lib/*.py InvokeAI-Installer/lib # Move the wheel mv dist/*.whl InvokeAI-Installer/lib/