mirror of
https://github.com/ceph/ceph
synced 2024-12-14 15:35:45 +00:00
30bebc266c
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
17 lines
326 B
Plaintext
17 lines
326 B
Plaintext
MENV_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
|
|
|
|
export PATH=${MENV_ROOT}/bin:$PATH
|
|
alias mset='source $MENV_ROOT/mset.sh'
|
|
|
|
case "$TERM" in
|
|
xterm-*color)
|
|
PS1='\[\033[$MRUN_PROMPT_COLOR;1m\]${MRUN_PROMPT}\[\033[00m\]'${PS1}
|
|
;;
|
|
*)
|
|
PS1='${MRUN_PROMPT}'${PS1}
|
|
;;
|
|
esac
|
|
|
|
export MRUN_CEPH_ROOT=$HOME/ceph
|
|
|