Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

zsh error: export:54: not valid in this context:

While messing around with zsh today and getting something configured properly for ruby, I got the following error.

/Users/secallahan/.zshrc:export:54: not valid in this context: /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/texbin

Here is my .zshrc (around line 54, where the error occurs) file that I edited.

# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh

....
....

# User configuration

export $PATH=/Users/secallahan/.rvm/gems/ruby-2.1.1/bin:/Users/secallahan/.rvm/gems/ruby-2.1.1@global/bin:/Users/secallahan/.rvm/rubies/ruby-2.1.1/bin:/Users/secallahan/.rvm/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/texbin
# export MANPATH="/usr/local/man:$MANPATH"

This was the only way I was able to make it. So then I opened a new shell and did ruby -v and got ruby2.1.1 as the current version.

Any help would be very much appreciated.

like image 415
Scalahansolo Avatar asked Mar 14 '14 01:03

Scalahansolo


1 Answers

When defining or exporting a variable, you should not use $:

export PATH=/Users...

Otherwise, the current value of PATH will be substituted into the export statement.

like image 142
isedev Avatar answered Nov 06 '22 12:11

isedev