We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f294d25 commit 2e1e2edCopy full SHA for 2e1e2ed
tools/format.sh
@@ -23,6 +23,8 @@ set -e
23
FIND="find . -name .git -prune -o -name .build -prune -o"
24
sed -i 's/Open[c]ensus/OpenCensus/g' $($FIND -type f -print)
25
sed -i 's/Stack[D]river/Stackdriver/g' $($FIND -type f -print)
26
+# No CRLF line endings.
27
+sed -i 's/\r$//' $($FIND -type f -print)
28
# No trailing spaces.
29
sed -i 's/ \+$//' $($FIND -type f -print)
30
# For easier debugging: print the version because it affects the formatting.
0 commit comments