aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_tools/lint.fish
diff options
context:
space:
mode:
Diffstat (limited to 'build_tools/lint.fish')
-rwxr-xr-xbuild_tools/lint.fish7
1 files changed, 5 insertions, 2 deletions
diff --git a/build_tools/lint.fish b/build_tools/lint.fish
index 5ac05d7d..f40d4c35 100755
--- a/build_tools/lint.fish
+++ b/build_tools/lint.fish
@@ -54,8 +54,11 @@ else
set files (git show --word-diff=porcelain --name-only --pretty=oneline)[2..-1]
end
- # Extract just the C/C++ files.
- set c_files (string match -r '.*\.c(?:pp)?$' -- $files)
+ # Extract just the C/C++ files that exist.
+ set c_files
+ for file in (string match -r '.*\.c(?:pp)?$' -- $files)
+ test -f $file; and set c_files $c_files $file
+ end
end
# We now have a list of files to check so run the linters.