Skip to content

Commit cbc7ea7

Browse files
authored
cleanup: use same clang-tidy in all repositories (googleapis/google-cloud-cpp-common#206)
Use the clang-tidy distributed with Fedora (currently clang-tidy-9) in this repository. I am planning to make similar changes in the other repositories and bring all our `clang-tidy` builds to use the same versions of `clang-format`, `clang-tidy`, `doxygen`, `buildifier`, `shellcheck`, and `cmake_format`. I also updated the clang-tidy configuration to match the newer repos (`-pubsub` and `-spanner`), and cleaned up any errors found in the files. Finally, fixed a number of Doxygen comments that used `<U>` (for a template parameter) which Doxygen thought was an unordered list or something.
1 parent 456105a commit cbc7ea7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

release/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ trap exit_handler EXIT
8686
# we make sure it's installed early on so we don't fail after completing part
8787
# of the release. We also use 'hub' to do the clone so that the user is asked
8888
# to authenticate at the beginning of the process rather than at the end.
89-
if ! which hub > /dev/null; then
89+
if command -v hub > /dev/null; then
9090
echo "Can't find 'hub' command"
9191
echo "Maybe run: sudo apt install hub"
9292
echo "Or build it from https://github.com/github/hub"

0 commit comments

Comments
 (0)