-
-
Notifications
You must be signed in to change notification settings - Fork 674
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
plugins/{goenv,pyenv}: Add cosmetic changes
- Loading branch information
1 parent
cd6500d
commit dde7ea6
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# @chopnico 2021 | ||
|
||
if [ -d "$HOME/.goenv" ]; then | ||
if [ -d ~/.goenv ]; then | ||
# goenv exported variables | ||
export GOENV_ROOT="$HOME/.goenv" | ||
export PATH="$GOENV_ROOT/bin:$PATH" | ||
export GOENV_ROOT=~/.goenv | ||
export PATH=$GOENV_ROOT/bin${PATH:+:$PATH} | ||
|
||
# Enables goenv shims | ||
eval "$(goenv init -)" | ||
eval -- "$(goenv init -)" | ||
|
||
# Allows goenv to manage GOPATH and GOROOT | ||
export PATH="$GOROOT/bin:$PATH" | ||
export PATH="$PATH:$GOPATH/bin" | ||
export PATH=$GOROOT/bin:$PATH | ||
export PATH=$PATH:$GOPATH/bin | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# @chopnico 2021 | ||
|
||
if [ -d "$HOME/.pyenv" ]; then | ||
export PYENV_ROOT="$HOME/.pyenv" | ||
export PATH="$PYENV_ROOT/bin:$PATH" | ||
eval "$(pyenv init --path)" | ||
eval "$(pyenv init -)" | ||
if [ -d ~/.pyenv ]; then | ||
export PYENV_ROOT=~/.pyenv | ||
export PATH=$PYENV_ROOT/bin${PATH:+:$PATH} | ||
eval -- "$(pyenv init --path)" | ||
eval -- "$(pyenv init -)" | ||
fi |