Files
@ r5387:d7e7903fdcbb
Branch filter:
Location: cpp/openttd-patchpack/source/svnup.sh - annotation
r5387:d7e7903fdcbb
590 B
application/x-sh
(svn r7575) -Codechange: Allow the AI to build signals under bridges (revert r4911)
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
|