Skip to content

Commit

Permalink
Fix start of the checkpatch script
Browse files Browse the repository at this point in the history
Use Perl instead of making script executable which was anyway missed in
the original script
  • Loading branch information
klogg committed May 10, 2024
1 parent d64a2d8 commit a6b0ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/checkpatch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ do
if [[ $file == *.mod.c ]]; then
continue
fi
./checkpatch.pl --strict --no-summary --no-tree "$@" -f "$file"
perl checkpatch.pl --strict --no-summary --no-tree "$@" -f "$file"
status=$status+$?
done

Expand Down

0 comments on commit a6b0ea9

Please sign in to comment.