diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-20 16:01:07 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-20 16:01:07 -0500 |
| commit | 9d82f34f530a0795089b704662f2b11a4361a045 (patch) | |
| tree | 44cd2bda6a117d9703fd1c448efeaedb9c4c4ca1 /tools | |
| parent | 8bdd2732153af89c6407ae2c8b7d8072677b883b (diff) | |
Fix shebangs and permissions
Diffstat (limited to 'tools')
| -rwxr-xr-x[-rw-r--r--] | tools/configure.py | 2 | ||||
| -rwxr-xr-x | tools/m2ctx.py | 2 | ||||
| -rw-r--r-- | tools/ninja_syntax.py | 2 | ||||
| -rwxr-xr-x[-rw-r--r--] | tools/setup.py | 2 | ||||
| -rwxr-xr-x[-rw-r--r--] | tools/sha1.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/tools/configure.py b/tools/configure.py index f3c34311..45d9824a 100644..100755 --- a/tools/configure.py +++ b/tools/configure.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os from pathlib import Path diff --git a/tools/m2ctx.py b/tools/m2ctx.py index f2275e33..7c20c34a 100755 --- a/tools/m2ctx.py +++ b/tools/m2ctx.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys import pyperclip diff --git a/tools/ninja_syntax.py b/tools/ninja_syntax.py index 2aa8456e..e0716e8a 100644 --- a/tools/ninja_syntax.py +++ b/tools/ninja_syntax.py @@ -1,5 +1,3 @@ -#!/usr/bin/python - # Copyright 2011 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/setup.py b/tools/setup.py index f81ca25d..6e83c64a 100644..100755 --- a/tools/setup.py +++ b/tools/setup.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import requests import zipfile import io diff --git a/tools/sha1.py b/tools/sha1.py index 8cd6edd8..fd1cbda8 100644..100755 --- a/tools/sha1.py +++ b/tools/sha1.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from pathlib import Path import argparse |
