Skip to content

Commit

Permalink
Remove undesirable hardcoding of PATH into zshrc (#4925)
Browse files Browse the repository at this point in the history
See robbyrussell@b67961d
  • Loading branch information
fvgs authored and mcornella committed Jun 16, 2016
1 parent 46c0d95 commit 551abfc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion templates/zshrc.zsh-template
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ plugins=(git)

# User configuration

export PATH=$HOME/bin:/usr/local/bin:$PATH
# export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH"
# export MANPATH="/usr/local/man:$MANPATH"

source $ZSH/oh-my-zsh.sh
Expand Down
6 changes: 0 additions & 6 deletions tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ main() {
" ~/.zshrc > ~/.zshrc-omztemp
mv -f ~/.zshrc-omztemp ~/.zshrc

printf "${BLUE}Copying your current PATH and adding it to the end of ~/.zshrc for you.${NORMAL}\n"
sed "/export PATH=/ c\\
export PATH=\"$PATH\"
" ~/.zshrc > ~/.zshrc-omztemp
mv -f ~/.zshrc-omztemp ~/.zshrc

# If this user's login shell is not already "zsh", attempt to switch.
TEST_CURRENT_SHELL=$(expr "$SHELL" : '.*/\(.*\)')
if [ "$TEST_CURRENT_SHELL" != "zsh" ]; then
Expand Down

0 comments on commit 551abfc

Please sign in to comment.