mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-12 04:02:19 +01:00
and clean up a stale comment to put configs under profile.d, as we don't source them here (profile.d is only for the login shell)
14 lines
281 B
Bash
14 lines
281 B
Bash
if [[ $- != *i* ]] ; then
|
|
# Shell is non-interactive. Be done now!
|
|
return
|
|
fi
|
|
|
|
# set fallback PS1; only if currently set to upstream bash default
|
|
if [ "$PS1" = '\s-\v\$ ' ]; then
|
|
PS1='\h:\w\$ '
|
|
fi
|
|
|
|
if [ -r /etc/bash/bash_completion.sh ]; then
|
|
. /etc/bash/bash_completion.sh
|
|
fi
|