From eca0551c3eedfc43a7d9a3a917ee137d67d099a7 Mon Sep 17 00:00:00 2001 From: Panagiotis Vasilopoulos Date: Mon, 10 Aug 2020 14:56:44 +0300 Subject: [PATCH] wasptool: Change Python shebang to ensure compatibility - Certain Unix-like systems (such as *BSD systems) do not use /usr/bin/python3 as the default Python path. This small change will ensure a higher degree of compatibility. Signed-off-by: Panagiotis Vasilopoulos --- tools/wasptool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wasptool b/tools/wasptool index b963270..666be96 100755 --- a/tools/wasptool +++ b/tools/wasptool @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later # Copyright (c) 2020 Daniel Thompson