From e782d07a402038c455b103cf76a3b022a30569ba Mon Sep 17 00:00:00 2001 From: Austin English Date: Thu, 6 Jun 2024 13:11:01 -0500 Subject: [PATCH] CI/check_tabs.sh: remove unused script This has been superseded by .clang-format --- CI/check_tabs.sh | 9 --------- 1 file changed, 9 deletions(-) delete mode 100755 CI/check_tabs.sh diff --git a/CI/check_tabs.sh b/CI/check_tabs.sh deleted file mode 100755 index 1e88b57fd4..0000000000 --- a/CI/check_tabs.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -OUTPUT=$(grep -nRP '\t' --include=\*.{cpp,hpp,c,h} --exclude=ui_\* apps components) - -if [[ $OUTPUT ]] ; then - echo "Error: Tab characters found!" - echo $OUTPUT - exit 1 -fi