We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d842ad commit 6a908d6Copy full SHA for 6a908d6
ci/install_abseil.sh
@@ -55,7 +55,6 @@ fi
55
if [ "${ABSEIL_CPP_VERSION}" = "20240116.1" ] || [ "${ABSEIL_CPP_VERSION}" = "20240116.2" ]; then
56
echo "Patching abseil"
57
patch -p1 < ${TOPDIR}/ci/fix-abseil-cpp-issue-1536.patch
58
-EOF
59
else
60
echo "Not patching abseil"
61
fi
tools/format.sh
@@ -23,8 +23,8 @@ fi
23
# No CRLF line endings, except Windows files.
24
"${SED[@]}" 's/\r$//' $($FIND -name '*.ps1' -prune -o \
25
-name '*.cmd' -prune -o -type f -print)
26
-# No trailing spaces.
27
-"${SED[@]}" 's/ \+$//' $($FIND -type f -print)
+# No trailing spaces, except in patch.
+"${SED[@]}" 's/ \+$//' $($FIND -name "*.patch" -prune -o -type f -print)
28
29
# If not overridden, try to use clang-format-18 or clang-format.
30
if [[ -z "$CLANG_FORMAT" ]]; then
0 commit comments