From cb307bf01aba9f76df5c1f800ae2296091a31fce Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 25 Aug 2017 06:53:02 +0200 Subject: Do not hardcode path to the Python interpreter Use `/usr/bin/env python3` instead of `/usr/bin/python3` in the shebang of Python scripts. This adds support for non-standard Python interpreter paths such as the paths used in virtualenv environments. Signed-off-by: Lukas Fleischer --- aurweb/scripts/mkpkglists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aurweb/scripts/mkpkglists.py') diff --git a/aurweb/scripts/mkpkglists.py b/aurweb/scripts/mkpkglists.py index 686ee7d0..6724141a 100755 --- a/aurweb/scripts/mkpkglists.py +++ b/aurweb/scripts/mkpkglists.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import datetime import gzip -- cgit v1.2.3-24-g4f1b