Files
@ r656:44c757c66b53
Branch filter:
Location: cpp/openttd-patchpack/source/svnup.sh - annotation
r656:44c757c66b53
544 B
application/x-sh
(svn r1090) -Fix: Made the _openttd_revision variable global, and with that
hopefully killed the windows-revision problem. If WITH_REV is defined,
for both Windows as *nix system _openttd_revision is filled with normal
info, else _openttd_revision is set to 'norev000'
-Fix: Small possible server-crash
hopefully killed the windows-revision problem. If WITH_REV is defined,
for both Windows as *nix system _openttd_revision is filled with normal
info, else _openttd_revision is set to 'norev000'
-Fix: Small possible server-crash
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"
|