forked from extern/easydiffusion
Typo while checking the OS name
This commit is contained in:
parent
1d4a835e4a
commit
e9ddef6992
@ -13,11 +13,10 @@ STABLE_DIFFUSION_REPO_DIR_NAME = 'stable-diffusion'
|
|||||||
|
|
||||||
PROJECT_ENV_DIR_NAME = 'project_env'
|
PROJECT_ENV_DIR_NAME = 'project_env'
|
||||||
|
|
||||||
START_CMD_FILE_NAME = "Start Stable Diffusion UI.cmd" if platform.system == "Windows" else "start.sh"
|
START_CMD_FILE_NAME = "Start Stable Diffusion UI.cmd" if platform.system() == "Windows" else "start.sh"
|
||||||
DEV_CONSOLE_CMD_FILE_NAME = "Developer Console.cmd" if platform.system == "Windows" else "developer_console.sh"
|
DEV_CONSOLE_CMD_FILE_NAME = "Developer Console.cmd" if platform.system() == "Windows" else "developer_console.sh"
|
||||||
CONFIG_FILE_NAME = 'config.json'
|
CONFIG_FILE_NAME = 'config.json'
|
||||||
|
|
||||||
|
|
||||||
# top-level folders
|
# top-level folders
|
||||||
ENV_DIR_NAME = 'env'
|
ENV_DIR_NAME = 'env'
|
||||||
MODELS_DIR_NAME = 'models'
|
MODELS_DIR_NAME = 'models'
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
import os
|
import os
|
||||||
import shutil
|
|
||||||
import platform
|
|
||||||
|
|
||||||
from installer import app, helpers
|
from installer import app, helpers
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user