Files
@ r556:6d4e803d1a75
Branch filter:
Location: cpp/openttd-patchpack/source/svnup.sh - annotation
r556:6d4e803d1a75
544 B
application/x-sh
(svn r957) -Fix: vehicle.c compiler problems for MSVC6 only! (Tron)
r335:17df698dbd68 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r113:2741b4902d42 r113:2741b4902d42 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r113:2741b4902d42 r113:2741b4902d42 r113:2741b4902d42 r335:17df698dbd68 | #!/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
# 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 -r HEAD:$(($Base + 1))
fi
# displays merged files
cat svn.log|grep "^G"
cat svn.log|grep "^C"
|