mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
8 lines
153 B
Bash
8 lines
153 B
Bash
#!/bin/bash
|
|
|
|
# make sure we are not already in a venv
|
|
# (don't need to check status)
|
|
deactivate >/dev/null 2>&1
|
|
|
|
exec python3 $(dirname $0)/main.py ${@}
|