be quiet when make style does nothing

The `make style` and `make style-all` commands have been performing well
without glitches for long enough that it is no longer necessary to report
when they don't change the style of a file. Especially in light of the
fact that all the relevant code has been restyled in the past year. This
change makes `make style-all` much less noisy.
This commit is contained in:
Kurtis Rader 2017-02-22 20:55:59 -08:00
parent 64fe617c63
commit 7d65141137

View file

@ -79,7 +79,6 @@ if set -q c_files[1]
cp $file $file.new # preserves mode bits
clang-format $file >$file.new
if cmp --quiet $file $file.new
echo $file was correctly formatted
rm $file.new
else
echo $file was NOT correctly formatted
@ -107,7 +106,6 @@ if set -q f_files[1]
cp $file $file.new # preserves mode bits
fish_indent <$file >$file.new
if cmp --quiet $file $file.new
echo $file was correctly formatted
rm $file.new
else
echo $file was NOT correctly formatted