blob: 61794c8ecb464c8799329783822c6ad5cbe78e4c (
plain)
1
2
3
4
5
6
7
|
# This unit serves to initialise PROMPT_COMMAND as early as possible in cases
# where bash has been launched as a login shell. Though not an especially
# common practice, some profile.d drop-ins need to be able to extend its value.
if [ "${BASH}" ] && shopt -q login_shell; then
eval 'PROMPT_COMMAND=()'
fi
|