10 lines
178 B
Bash
10 lines
178 B
Bash
#!/usr/bin/env bash
|
|
|
|
# bash_profile is executed immediately after logging in
|
|
|
|
if [[ -f "$HOME/.bashrc" ]]; then
|
|
source "$HOME/.bashrc"
|
|
fi
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|