1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 18:13:49 +01:00

dist/tools: Use /usr/bin/env to lookup Python.

Fixes some Python scripts which didn't use `/usr/bin/env`.
This commit is contained in:
Alain Péteut 2023-04-04 09:40:39 +02:00
parent 6f0ac0c092
commit 25df307ea1
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
# Copyright (C) 2019 Otto-von-Guericke-Universität Magdeburg # Copyright (C) 2019 Otto-von-Guericke-Universität Magdeburg
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
""" """
Command line utility to check if only a subset of board / application combinations Command line utility to check if only a subset of board / application combinations
need to be build in the CI need to be build in the CI

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
""" """
Command line utility to generate compile_commands.json for RIOT applications Command line utility to generate compile_commands.json for RIOT applications
""" """

View File

@ -1,4 +1,4 @@
#!/usr/bin/python2 #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (C) 2014 Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de> # Copyright (C) 2014 Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------
# Copyright 2020 ARM Limited or its affiliates # Copyright 2020 ARM Limited or its affiliates

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------
# Copyright 2019 ARM Limited or its affiliates # Copyright 2019 ARM Limited or its affiliates

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------
# Copyright 2019 ARM Limited or its affiliates # Copyright 2019 ARM Limited or its affiliates

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
""" """
Command line utility to list and filter TTYs Command line utility to list and filter TTYs
""" """