From 3e67e5c9928f8b1e1c5a63def88d53ed1fed12eb Mon Sep 17 00:00:00 2001 From: Jörg Thalheim Date: Mon, 1 May 2017 02:26:56 +0200 Subject: more portable python shebangs (#5816) This is useful on systems like NixOS, where python3 is not in /usr/bin/python3 as well as for people using alternative ways to install python such as virtualenv/pyenv. --- test/create-sys-script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/create-sys-script.py') diff --git a/test/create-sys-script.py b/test/create-sys-script.py index 4b7abd24ae..402b4f83ab 100755 --- a/test/create-sys-script.py +++ b/test/create-sys-script.py @@ -1,6 +1,6 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 -OUTFILE_HEADER = """#!/usr/bin/python3 +OUTFILE_HEADER = """#!/usr/bin/env python3 # # create-sys-script.py # -- cgit v1.2.3-54-g00ecf