From 7760e4f668205af20f158f3dc1a5ad0e535d5c63 Mon Sep 17 00:00:00 2001 From: Alice Jacka Date: Fri, 14 Feb 2025 16:16:43 +1100 Subject: [PATCH] Update shebang to use env Find Python using the PATH environment variable instead of hardcoding, as recommended here: https://stackoverflow.com/questions/10376206/what-is-the-preferred-bash-shebang --- webcam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcam.py b/webcam.py index 423488b..4e2d6b4 100755 --- a/webcam.py +++ b/webcam.py @@ -1,4 +1,4 @@ -#! /usr/bin/python +#! /usr/bin/env python # webcamd - A High Performance MJPEG HTTP Server # Original author: Igor Maculan