From a100ea55203e0aa184b1402692b6c83756399e61 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 1 Jan 2025 23:48:38 +0900 Subject: [PATCH] check_whence.py: Use a more portable shebang. Some systems do not have /usr/bin/python3, e.g. Guix System and NixOS. Look python3 from PATH. Signed-off-by: Maxim Cournoyer --- check_whence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_whence.py b/check_whence.py index 42480892..357c1311 100755 --- a/check_whence.py +++ b/check_whence.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os, re, stat, sys from io import open