# This script file is sourced in .bashrc
#
# The revision warning is given only once at login.

# User specific aliases and functions
export LD_LIBRARY_PATH=/usr/local/qwt-5.2.0/lib:$LD_LIBRARY_PATH
export PATH=/home/daqct3/fact_repos.svn/tools/Scripts:/usr/local/Trolltech/Qt-4.4.3/bin:.:$PATH
alias n=nedit

# Check if repository is a mixed or locally modified version (only for login shell))
if shopt -q login_shell; then
if [[ `svnversion fact_repos.svn -n` =~ [:M] ]]
  then
    xterm -e "echo 'Warning: fact_repos.svn does not have a single revision number';
    echo 'Make an update before starting a run!';
    echo 'Contact O.Grimm, T.Kraehenbuehl, M. Rissi or Q.Weitzel in case you need help';
    echo 'Hit return to continue';
    read;"
fi
fi

