Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit f3bfa50

Browse files
authored
format.sh was missing the examples/ directory. (#90)
1 parent df22bff commit f3bfa50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -e
1818
# For easier debugging: print the version because it affects the formatting.
1919
CMD=clang-format
2020
$CMD -version
21-
$CMD -i -style=Google $(find opencensus -name '*.cc' -or -name '*.h')
21+
$CMD -i -style=Google $(find . -name '*.cc' -or -name '*.h')
2222
CHANGED="$(git ls-files --modified)"
2323
if [[ ! -z "$CHANGED" ]]; then
2424
echo "The following files have changes:"

0 commit comments

Comments
 (0)