From: Lonnie A. <li...@lo...> - 2018-11-02 13:15:21
|
Hi Devs, Yesterday I cleaned-up trailing spaces in our scripts, many years of copy/paste'ing and an old Busybox "vi" auto-indent "feature". scripts, remove trailing spaces, cosmetic, no functional change https://github.com/astlinux-project/astlinux/compare/c7ab5b16f26e...f7d41203769f In general this should not effect anyone. But, if by chance you maintain a patch referencing the astlinux github repository, these space removals could break patches, PR's, etc. . If that happens, remove such trailing spaces in your custom script changes by using sed "in-place" ... $ sed -i 's/ *$//' custom_astlinux_script Alternatively, if you are using "vi", search using '/ *$' to find any trailing spaces. Lonnie |