mirror of https://github.com/encounter/SDL.git
Convert some files back into DOS line endings after updating copyright
This commit is contained in:
parent
49225f5f04
commit
0f586d5808
|
@ -2,8 +2,15 @@
|
||||||
|
|
||||||
find . -type f -exec grep -Il "Copyright" {} \; \
|
find . -type f -exec grep -Il "Copyright" {} \; \
|
||||||
| grep -v \.hg \
|
| grep -v \.hg \
|
||||||
| while read i; \
|
| while read $file; \
|
||||||
do \
|
do \
|
||||||
LC_ALL=C sed -ie "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$i"; \
|
LC_ALL=C sed -ie "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$file"; \
|
||||||
rm "${i}e"; \
|
rm "${file}e"; \
|
||||||
|
done
|
||||||
|
|
||||||
|
for file in COPYING.txt VisualC-WinRT/SDL2-WinRT.nuspec VisualC-WinRT/SDL2main-WinRT-NonXAML.nuspec src/main/windows/version.rc visualtest/COPYING.txt
|
||||||
|
do if [ -f "$file" ]; then
|
||||||
|
sed 's/$'"/`echo \\\r`/" $file > $file.new
|
||||||
|
mv $file.new $file
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue