Skip to content

Commit

Permalink
Merge pull request #71797 from CleverRaven/clang-tidy-sh
Browse files Browse the repository at this point in the history
Fix error in clang-tidy.sh
  • Loading branch information
akrieger authored Feb 17, 2024
2 parents dd7a836 + a08542d commit 703087c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-scripts/clang-tidy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ else
( test -f ./files_changed && ( build-scripts/get_affected_files.py ./files_changed | grep -v third-party ) ) || \
echo unknown )"

if [ "tidyable_cpp_files" == "unknown" ]
if [ "$tidyable_cpp_files" == "unknown" ]
then
echo "Unable to determine affected files, tidying all files"
tidyable_cpp_files=$all_cpp_files
Expand Down

0 comments on commit 703087c

Please sign in to comment.