commit dfd729b997bae4b3373dd30f6622ac9bc4d3d131 parent 365dd6c2570fe6e60c4fd764d913806e495c5b7f Author: sin <sin@2f30.org> Date: Thu, 20 Jun 2013 13:49:10 +0100 Remove crappy scripts Diffstat:
D | .astylerc | | | 10 | ---------- |
D | format.sh | | | 13 | ------------- |
D | src/vim.sh | | | 4 | ---- |
3 files changed, 0 insertions(+), 27 deletions(-)
diff --git a/.astylerc b/.astylerc @@ -1,10 +0,0 @@ -indent=force-tab=8 -indent-classes -indent-namespaces -indent-preprocessor -max-instatement-indent=80 -suffix=none -brackets=linux -keep-one-line-statements -keep-one-line-blocks -convert-tabs diff --git a/format.sh b/format.sh @@ -1,13 +0,0 @@ -#!/bin/bash - -i=0 -for file in $(find . -type f -iname "*.[ch]"); do - astyle --options=.astylerc $file | grep -i "formatted" - if [ $? -eq 0 ]; then - let i=i+1 - fi -done - -if [ $i -gt 0 ]; then - echo "Beautified" $i "files." -fi diff --git a/src/vim.sh b/src/vim.sh @@ -1,4 +0,0 @@ -#!/bin/bash - -gvim -p $(find . -type f -iname "*.[chS]" | grep -v tools \ - | grep -v newlib-port | grep -v version.h)