MC_SAVE_OPS1="$OPS1"
if [ "`type -t short_curdir`" = function ]; then
OPS1="\`cgmem_which_prompt\`\u@\${HOSTNAME::5}:\`short_curdir\` "
- OPS1+="\$(prompt_git)\\$\$SHLVL "
+ if test -x /usr/bin/git >/dev/null 2>&1; then
+ OPS1+="\$(prompt_git)"
+ fi
+ OPS1+="\\$\$SHLVL "
else
OPS1="\u@\h:\W \\$"
fi
OPS1+="${debian_chroot:+($debian_chroot)}"
OPS1+="\`cgmem_which_prompt\`\u@\${HOSTNAME::5}:\`short_curdir\` "
- OPS1+="\$(prompt_git)"
+ if test -x /usr/bin/git >/dev/null 2>&1; then
+ OPS1+="\$(prompt_git)"
+ fi
OPS1+="\\$\$SHLVL "
export OPS1
}