KohyaSS/gui.sh
jstayco c79181b7ea
Update gui.sh
Removed an unnecessary debug line.
2023-03-27 18:58:30 -07:00

10 lines
260 B
Bash
Executable File

#!/usr/bin/env bash
# Activate the virtual environment
source ./venv/bin/activate
# If the requirements are validated, run the kohya_gui.py script with the command-line arguments
if python tools/validate_requirements.py; then
python kohya_gui.py "$@"
fi