diff options
| author | Aetias <144526980+AetiasHax@users.noreply.github.com> | 2025-02-22 13:09:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-22 13:09:50 +0100 |
| commit | 180e17256d1a5d979b540036a8a7e7e5a44958df (patch) | |
| tree | d95fb6fe32a0c4adde0fa314b5bd3f4a3aa4eeea /tools | |
| parent | 4a1f8e1d781d0712588638c247c183d6f1d937d9 (diff) | |
| parent | 19682dbc47829295b840cfeab3478429c7b241e3 (diff) | |
Merge pull request #75 from LagoLunatic/shebangs
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 |
