0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00

Remove use of environment python

This commit is contained in:
dthelegend 2024-04-10 17:40:08 +01:00
parent 344eb342f7
commit 7fe01ccaf3
6 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,3 @@
#!/bin/sh
env python3 "@script_path@" "$@"
/usr/bin/python3 "@script_path@" "$@"

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
# Opens auth ui if requested, otherwise starts normal ui
import sys

View file

@ -1,3 +1,3 @@
#!/bin/sh
env python3 "@script_path@" "$@"
/usr/bin/python3 "@script_path@" "$@"

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
# CLI directly called by running the howdy command
# Import required modules

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
# Compare incoming video with known faces
# Running in a local python instance to get around PATH issues

View file

@ -47,7 +47,7 @@
const auto DEFAULT_TIMEOUT =
std::chrono::duration<int, std::chrono::milliseconds::period>(100);
const auto MAX_RETRIES = 5;
const auto PYTHON_EXECUTABLE = "python3";
const auto PYTHON_EXECUTABLE = "/usr/bin/python3";
#define S(msg) gettext(msg)