-
Notifications
You must be signed in to change notification settings - Fork 2
PF18
ᴀɴᴛᴏɴ ɴᴏᴠᴏᴊɪʟᴏᴠ edited this page Jun 23, 2024
·
4 revisions
Checks all spec data for empty lines at the end.
%changelog
* Wed Jan 24 2018 Anton Novojilov <[email protected]> - 1.0.0-0↵
- Test changelog %record↵
%changelog
* Wed Jan 24 2018 Anton Novojilov <[email protected]> - 1.0.0-0↵
- Test changelog %record↵
↵
↵
%changelog
* Wed Jan 24 2018 Anton Novojilov <[email protected]> - 1.0.0-0↵
- Test changelog %record↵
↵
Answer from StackExchange:
diff
programs (like used bygit diff
, github etc.) show line by line differences between files. They usually print a message when only one file ends with a newline because else you would not see this difference. For example, if the only difference between two files is the presence of the last newline character, without the hint it would look like the both files were the same, whendiff
andcmp
return an exit-code unequal success and the checksums of the files (e.g. viamd5sum
) don't match.