c79181b7ea
Removed an unnecessary debug line.
10 lines
260 B
Bash
Executable File
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
|