Update file dot_bashrc
This commit is contained in:
parent
9dfb728764
commit
915ce78117
1 changed files with 6 additions and 6 deletions
|
@ -1,12 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
# shellcheck disable=SC1090,SC1091
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
# Prefer US English
|
||||
export LANG="en_US"
|
||||
if [[ "$(hostname)" != *'-minimal' ]]; then
|
||||
|
@ -23,6 +17,12 @@ if [ -f "$HOME/.config/shell/profile.sh" ]; then
|
|||
. "$HOME/.config/shell/profile.sh"
|
||||
fi
|
||||
|
||||
### Escape if shell not interactive
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
### Fig / LC_ALL
|
||||
if [ "$BASH_SUPPORT" = 'true' ]; then
|
||||
if [ -f "$HOME/.fig/shell/bashrc.pre.bash" ]; then
|
||||
|
|
Loading…
Reference in a new issue