From 5da30295ad701bb6a09c4f0da1a25ec68d5d7c9f Mon Sep 17 00:00:00 2001 From: Ryan Friedman Date: Mon, 21 Aug 2023 20:24:39 -0600 Subject: [PATCH] Tools: Remove executable permissions and add missing shebang * Hex files should not be executable * .txt files should not be executable * The DDS test listener was supposed to be executable but was missing a shebang Signed-off-by: Ryan Friedman --- Tools/CPUInfo/output-PixFlamingo.txt | 0 Tools/bootloaders/CubeOrange-bdshot_bl.hex | 0 Tools/bootloaders/CubeOrange-periph_bl.hex | 0 .../ardupilot_dds_tests/ardupilot_dds_tests/time_listener.py | 1 + 4 files changed, 1 insertion(+) mode change 100755 => 100644 Tools/CPUInfo/output-PixFlamingo.txt mode change 100755 => 100644 Tools/bootloaders/CubeOrange-bdshot_bl.hex mode change 100755 => 100644 Tools/bootloaders/CubeOrange-periph_bl.hex diff --git a/Tools/CPUInfo/output-PixFlamingo.txt b/Tools/CPUInfo/output-PixFlamingo.txt old mode 100755 new mode 100644 diff --git a/Tools/bootloaders/CubeOrange-bdshot_bl.hex b/Tools/bootloaders/CubeOrange-bdshot_bl.hex old mode 100755 new mode 100644 diff --git a/Tools/bootloaders/CubeOrange-periph_bl.hex b/Tools/bootloaders/CubeOrange-periph_bl.hex old mode 100755 new mode 100644 diff --git a/Tools/ros2/ardupilot_dds_tests/ardupilot_dds_tests/time_listener.py b/Tools/ros2/ardupilot_dds_tests/ardupilot_dds_tests/time_listener.py index 851ebf7027..e365eebaf9 100755 --- a/Tools/ros2/ardupilot_dds_tests/ardupilot_dds_tests/time_listener.py +++ b/Tools/ros2/ardupilot_dds_tests/ardupilot_dds_tests/time_listener.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 # Copyright 2023 ArduPilot.org. # # This program is free software: you can redistribute it and/or modify