TERM environment variable not set

doronkatz

Registered
I keep on getting the "TERM environment variable not set." error when I work with svn commands on my Mac terminal.

I had a look through all my . files in home and im only using .profile which has the following:

---
export JAVA_HOME=/Library/Java/Home
export CATALINA_HOME=/Library/Tomcat/Home
export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:$PATH"
export SVN_EDITOR=/usr/bin/nano
export EDITOR=/usr/bin/nano
export TERM=xterm-color

#enables color in the terminal bash shell export
CLICOLOR=1
#sets up the color scheme for list export
LSCOLORS=gxfxcxdxbxegedabagacad
#sets up the prompt color (currently a green similar to linux terminal)
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ '
#sets up proper alias commands when called
alias ls='ls -G'
alias ll='ls -hl'
--


Im not sure what to do but for any svn command i do i keep on getting that error.
Thanks guys
 
Which version of SVN do you have? Run:
Code:
svn --version

In a directory with a .svn subdirectory, run:
Code:
svn info

On the line starting with URL, what is to the left of the first colon?
 
Back
Top