Learning-Management-System/.devcontainer/bashrc.override.sh
Ahmed Nagi e58c9c1f71 Update
2025-01-10 19:54:55 +02:00

20 lines
352 B
Bash

#
# .bashrc.override.sh
#
# persistent bash history
HISTFILE=~/.bash_history
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
# set some django env vars
source /entrypoint
# restore default shell options
set +o errexit
set +o pipefail
set +o nounset
# start ssh-agent
# https://code.visualstudio.com/docs/remote/troubleshooting
eval "$(ssh-agent -s)"