File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,18 @@ if [ -f "$VENV_PYTHON" ]; then
1616 PYTHON_CMD=" $VENV_PYTHON "
1717else
1818 # Fallback to system Python if venv doesn't exist
19- PYTHON_CMD=" python "
19+ PYTHON_CMD=" python3 "
2020fi
2121
2222# Help handling: route any -h/--help or leading "help" to CLI help
2323for arg in " $@ " ; do
2424 if [[ " $arg " == " -h" || " $arg " == " --help" ]]; then
25- exec python " $PACKAGE_ROOT /lib/cli.py" --help
25+ exec python3 " $PACKAGE_ROOT /lib/cli.py" --help
2626 fi
2727done
2828
2929if [[ " $1 " == " help" ]]; then
30- exec python " $PACKAGE_ROOT /lib/cli.py" --help
30+ exec python3 " $PACKAGE_ROOT /lib/cli.py" --help
3131fi
3232
3333# Subcommands: route to CLI if recognized
@@ -36,7 +36,7 @@ if [[ "$1" == "test" ]]; then
3636 exec " $PYTHON_CMD " " $PACKAGE_ROOT /lib/cli.py" " $@ "
3737fi
3838if [[ " $1 " =~ ^(setup| install| config| waybar| systemd| status| model| validate| uninstall| backend| state| mic-osd)$ ]]; then
39- exec python " $PACKAGE_ROOT /lib/cli.py" " $@ "
39+ exec python3 " $PACKAGE_ROOT /lib/cli.py" " $@ "
4040fi
4141
4242# Set up CUDA library path if CUDA is installed
You can’t perform that action at this time.
0 commit comments