aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_tools/style.fish
diff options
context:
space:
mode:
Diffstat (limited to 'build_tools/style.fish')
-rwxr-xr-xbuild_tools/style.fish7
1 files changed, 5 insertions, 2 deletions
diff --git a/build_tools/style.fish b/build_tools/style.fish
index ee54216b..b5b3b871 100755
--- a/build_tools/style.fish
+++ b/build_tools/style.fish
@@ -42,8 +42,11 @@ else
set files (git show --name-only --pretty=oneline | tail --lines=+2)
end
- # Extract just the C/C++ files.
- set c_files (string match -r '^.*\.(?:c|cpp|h)$' -- $files)
+ # Extract just the C/C++ files that exist.
+ set c_files
+ for file in (string match -r '^.*\.(?:c|cpp|h)$' -- $files)
+ test -f $file; and set c_files $c_files $file
+ end
# Extract just the fish files.
set f_files (string match -r '^.*\.fish$' -- $files)
end