Revert "Check if .shrc is actually loaded"

This reverts commit 65dd88967f.
This commit is contained in:
Anthony Rose 2022-09-10 23:21:51 +01:00
parent 65dd88967f
commit d1182673b8
3 changed files with 0 additions and 11 deletions

View file

@ -19,8 +19,3 @@ bind 'set bell-style none'
bind 'set completion-ignore-case on' bind 'set completion-ignore-case on'
bind 'set enable-bracketed-paste off' bind 'set enable-bracketed-paste off'
export PS1="\[\033[01m\]\u@\h\\$\[\033[00m\] " export PS1="\[\033[01m\]\u@\h\\$\[\033[00m\] "
if [ -n $_acp_shrc ]
then
. "$HOME/.shrc"
fi

View file

@ -7,7 +7,6 @@ case "$-" in
return 1 return 1
;; ;;
esac esac
_acp_shrc=YES
if [ -d /var/acp ] if [ -d /var/acp ]
then then

View file

@ -21,8 +21,3 @@ bindkey "^[OA" history-beginning-search-backward
bindkey "^[OB" history-beginning-search-forward bindkey "^[OB" history-beginning-search-forward
export PS1="%B%n@%m%#%b " export PS1="%B%n@%m%#%b "
if [ -n $_acp_shrc ]
then
. "$HOME/.shrc"
fi