From b3c6624e82ca70b089e0e6628d51066a1684735f Mon Sep 17 00:00:00 2001 From: lvmin Date: Fri, 13 Oct 2023 13:25:19 -0700 Subject: [PATCH] ini build launcher --- build_launcher.py | 5 +++++ launch.py | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 build_launcher.py diff --git a/build_launcher.py b/build_launcher.py new file mode 100644 index 00000000..c10e606a --- /dev/null +++ b/build_launcher.py @@ -0,0 +1,5 @@ +is_win32_standalone_build = False + + +def build_launcher(): + return diff --git a/launch.py b/launch.py index 12f28026..07ed53dd 100644 --- a/launch.py +++ b/launch.py @@ -4,6 +4,7 @@ import sys import platform import fooocus_version +from build_launcher import build_launcher from modules.launch_util import is_installed, run, python, run_pip, requirements_met from modules.model_loader import load_file_from_url from modules.path import modelfile_path, lorafile_path, vae_approx_path, fooocus_expansion_path, checkpoint_downloads @@ -82,6 +83,7 @@ def ini_cbh_args(): prepare_environment() +build_launcher() ini_cbh_args() download_models()