Skip to content

Commit

Permalink
Fix script error in clang-format.sh. (#10753)
Browse files Browse the repository at this point in the history
  • Loading branch information
SolidWallOfCode authored Nov 9, 2023
1 parent 27a35ef commit dbea08b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/clang-format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function main() {

# Check for the option to just install clang-format without running it.
just_install=0
if [ $1 = "--install" ] ; then
if [ "$1" = "--install" ] ; then
just_install=1
if [ $# -ne 1 ] ; then
echo "No other arguments should be used with --install."
Expand Down

0 comments on commit dbea08b

Please sign in to comment.