1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
From: Tzafrir Cohen <nvidia@cohens.org.il>
Subject: Fix shebang lines of some executable scripts
Index: mstflint/tracers/fwtrace/mstfwtrace.py
===================================================================
--- mstflint.orig/tracers/fwtrace/mstfwtrace.py 2023-11-14 21:05:09.081545123 +0200
+++ mstflint/tracers/fwtrace/mstfwtrace.py 2023-11-14 21:05:09.077545123 +0200
@@ -1,3 +1,5 @@
+#!/usr/bin/env python3
+
# Copyright (c) 2019-2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# This software is available to you under a choice of one of two
Index: mstflint/resourcetools/mstresourcedump.py
===================================================================
--- mstflint.orig/resourcetools/mstresourcedump.py 2023-11-14 20:36:15.969534264 +0200
+++ mstflint/resourcetools/mstresourcedump.py 2023-11-14 21:06:07.021545486 +0200
@@ -1,3 +1,5 @@
+#!/usr/bin/python3
+
# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
#
# This software is available to you under a choice of one of two
Index: mstflint/resourcetools/mstresourceparse.py
===================================================================
--- mstflint.orig/resourcetools/mstresourceparse.py 2023-11-14 20:36:15.969534264 +0200
+++ mstflint/resourcetools/mstresourceparse.py 2023-11-14 21:06:10.893545510 +0200
@@ -1,3 +1,5 @@
+#!/usr/bin/python3
+
# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
#
# This software is available to you under a choice of one of two
|