#anything to add to a user's bashrc

if [ "TRUE" = "TRUE" ];then
   # Set prompt to print git branch of current directory
   parse_git_branch() {
   # Exit early if git is not installed
   if [ -e /usr/bin/git ];then
      git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \[\1\]/'
   fi
   }

# Supply D- to indicate user is in a container generated by DUE
# The --prompt option will set FRR
  export PS1='DUE-FRR:\u@$(parse_git_branch)$ '

fi
