From 98f13f7a8941c9d43e04d61ffb70f723ab1d53e3 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Fri, 26 Jul 2024 14:25:21 +0300 Subject: [PATCH] *.py: use a better shebang --- bytebeat_compiler.py | 2 +- gitignore_clean.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index a46376b..c1f94b0 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 if __name__ == "__main__": print(":: C bytebeat generator: compiler unit") diff --git a/gitignore_clean.py b/gitignore_clean.py index 7ea6759..ce46552 100644 --- a/gitignore_clean.py +++ b/gitignore_clean.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 from re import sub as re_sub from glob import glob