9 lines
259 B
Bash
Executable File
9 lines
259 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 |