svnup.sh
changeset 0 29654efe3188
child 113 cc110ea79126
equal deleted inserted replaced
-1:000000000000 0:29654efe3188
       
     1 #!/bin/bash
       
     2 # This script updates the svn source and displays log changes
       
     3 # This is only useful for users of CLI based SVN clients
       
     4 # Written by Bjarni
       
     5 
       
     6 
       
     7 # reads what version you have now
       
     8 Base=`svn info | grep "Revision" | xargs -n 1 | tail -n 1`
       
     9 
       
    10 # updates the source
       
    11 svn update
       
    12 
       
    13 # if the revision number changed
       
    14 if [ "$Base" -ne "`svn info | grep "Revision" | xargs -n 1 | tail -n 1`" ]; then
       
    15 # displays the log changes
       
    16 svn log -r HEAD:$(($Base + 1))
       
    17 fi