This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-11-13 10:25:04 -08:00
|
|
|
#!/bin/bash
|
2020-11-18 15:32:09 -08:00
|
|
|
# uncomment for debugging
|
|
|
|
# echo ".bash_profile sourced at user $USER login"
|
2020-11-13 10:25:04 -08:00
|
|
|
|
2020-11-18 15:32:09 -08:00
|
|
|
# only source .bashrc if interactive login shell
|
2021-03-09 13:13:23 -08:00
|
|
|
[[ $SHELL_INTERACTIVE ]] && [[ -f "$HOME/.bashrc" ]] && source "$HOME/.bashrc"
|