Skip to content

Commit

Permalink
Add driver to operator on all files to lower case command calls (TriB…
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlettroscoe committed Jun 16, 2021
1 parent 51e0671 commit 551647e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tribits/refactoring/lower-case-cmake-tree.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh
#
# Usage:
#
# lower-case-cmake-tree.sh <base-dir>
#
_SCRIPT_DIR=`echo $0 | sed "s/\(.*\)\/lower-case-cmake-tree[.]sh/\1/g"`
baseDir=$1
find ${baseDir} -type f \
\( -name CMakeLists.txt -or -name "*.cmake" -or "*.rst" \) \
-exec $_SCRIPT_DIR/../python_utils/lower_case_cmake.py {} ';'

0 comments on commit 551647e

Please sign in to comment.