Subversion Repositories vgwhois

Rev

Rev 5 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. #!/bin/bash
  2.  
  3. DIR=$( dirname $(realpath "$0" ) )
  4.  
  5. cd "$DIR"
  6.  
  7. if [ ! -d ".svn" ]; then
  8.         echo "$DIR was not checked out via SVN. Please update manually."
  9.         exit 1
  10. fi
  11.  
  12. svn update
  13.  
  14.