mirror of
https://github.com/getcompanion-ai/computer-guest.git
synced 2026-04-15 04:03:25 +00:00
8 lines
253 B
Bash
8 lines
253 B
Bash
export LANG="${LANG:-C.UTF-8}"
|
|
|
|
# Ensure user-local binaries are on PATH.
|
|
case ":$PATH:" in *":$HOME/.local/bin:"*) ;; *) export PATH="$HOME/.local/bin:$PATH" ;; esac
|
|
|
|
if [ -n "${BASH_VERSION:-}" ] && [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|