Removed old/outdated/unused scripts

This commit is contained in:
jpekkila
2019-08-06 17:44:43 +03:00
parent 1e9ac6edf0
commit 13c1bf272b
4 changed files with 0 additions and 74 deletions

View File

@@ -1,9 +0,0 @@
#!/bin/bash
if [[ $1 == "DO" && $2 == "IT!" ]]; then
find -name \*.h -o -name \*.cc -o -name \*.cu -o -name \*.cuh | xargs clang-format-6.0 -i -style=file
echo "It is done."
else
find -name \*.h -o -name \*.cc -o -name \*.cu -o -name \*.cuh
echo "I'm going to try to fix the style of these files."
echo "If you're absolutely sure, give \"DO IT!\" (without quotes) as a parameter."
fi