From 963095978b57e976223e58b922e1c415d8bc2090 Mon Sep 17 00:00:00 2001 From: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com> Date: Fri, 8 Nov 2024 13:10:18 -0700 Subject: [PATCH] Tools: Remove format.sh * This is now replaced by run_astyle.py * format.sh was not enforced by CI, now there is too much delta on the codebase to enforce this Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com> --- Tools/scripts/format.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 Tools/scripts/format.sh diff --git a/Tools/scripts/format.sh b/Tools/scripts/format.sh deleted file mode 100755 index 4ad18ba18c..0000000000 --- a/Tools/scripts/format.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -function format { - DIR=$1 - find $DIR -regex ".*\.\(h\|cpp\|pde\)" -exec astyle {} \; - find $DIR -regex ".*\.\(h\|cpp\|pde\)" -exec rm -f {}.orig \; -} - -format apo -format ArduRover -format ArduBoat -format libraries/APO -format libraries/AP_Common -format libraries/AP_GPS