Files
@ r5625:52b2115bd185
Branch filter:
Location: cpp/openttd-patchpack/source/svnup.sh - annotation
r5625:52b2115bd185
590 B
application/x-sh
(svn r8084) [Translations] Added nynorsk translation (pollux), renamed norwegian to norwegian bokmal, moved nynorsk to finished languages, and updated project files.
Strings pending to nynorsk will be preserved if they are differ from the current translation
Strings pending to nynorsk will be preserved if they are differ from the current translation
r335:17df698dbd68 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r1488:4c7f9f5f61fe r1488:4c7f9f5f61fe r1488:4c7f9f5f61fe r1488:4c7f9f5f61fe r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r113:2741b4902d42 r113:2741b4902d42 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r1583:f93a82637c0f r0:d63b455452f6 r113:2741b4902d42 r113:2741b4902d42 r113:2741b4902d42 r335:17df698dbd68 r1488:4c7f9f5f61fe r1488:4c7f9f5f61fe | #!/bin/sh
# This script updates the svn source and displays log changes
# This is only useful for users of CLI based SVN clients
# Written by Bjarni
[ "$PAGER" ] || PAGER=less
(
# reads what version you have now
Base=`svn info | grep "Revision" | xargs -n 1 | tail -n 1`
# updates the source
svn update > svn.log
cat svn.log
# if the revision number changed
if [ "$Base" -ne "`svn info | grep "Revision" | xargs -n 1 | tail -n 1`" ]; then
# displays the log changes
svn log -v -r HEAD:$(($Base + 1))
fi
# displays merged files
cat svn.log|grep "^G"
cat svn.log|grep "^C"
) | $PAGER
|