clean up repetative cargo env sourcing
parent
a7b8def567
commit
3f257e9ce2
@ -1,11 +1,11 @@
|
||||
if [[ -f "$HOME/.bashrc" ]]; then
|
||||
source "$HOME/.bashrc"
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
|
||||
if [[ -f "$HOME/.cargo/env" ]]; then
|
||||
source "$HOME/.cargo/env"
|
||||
. "$HOME/.cargo/env"
|
||||
fi
|
||||
|
||||
if [[ -f "$HOME/.nix-profile/etc/profile.d/nix.sh" ]]; then
|
||||
source "$HOME/.nix-profile/etc/profile.d/nix.sh"
|
||||
. "$HOME/.nix-profile/etc/profile.d/nix.sh"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue