mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-14 02:33:58 +01:00
Fix missing check for cargo env before loading
This commit is contained in:
parent
3f4255f333
commit
6b05582456
3 changed files with 3 additions and 3 deletions
|
@ -2,4 +2,4 @@
|
||||||
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
|
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
|
||||||
|
|
||||||
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
||||||
. "$HOME/.cargo/env"
|
[[ -s "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
|
||||||
|
|
|
@ -5,4 +5,4 @@ export LC_ALL=fr_FR.UTF-8
|
||||||
export PATH="$PATH:$HOME/.rvm/bin:$HOME/Projects/golang/bin"
|
export PATH="$PATH:$HOME/.rvm/bin:$HOME/Projects/golang/bin"
|
||||||
|
|
||||||
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||||
. "$HOME/.cargo/env"
|
[[ -s "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
export PATH="$PATH:$HOME/.rvm/bin"
|
export PATH="$PATH:$HOME/.rvm/bin"
|
||||||
|
|
||||||
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
||||||
. "$HOME/.cargo/env"
|
[[ -s "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
|
||||||
|
|
Loading…
Reference in a new issue