themes/doubletime: Fix "command not found" error caused by #118 (Fix #429)

This is a regression by PR #118 on GitHub [1].

[1] https://github.com/ohmybash/oh-my-bash/pull/118.
This commit is contained in:
Koichi Murase
2023-04-05 15:19:26 +09:00
parent aabc172d7a
commit d7993748b0

View File

@@ -33,7 +33,7 @@ function doubletime_scm_prompt {
if [ $CHAR = $SCM_NONE_CHAR ]; then
return
elif [ $CHAR = $SCM_GIT_CHAR ]; then
echo "$(command git_prompt_status)"
echo "$(git_prompt_status)"
else
echo "[$(scm_prompt_info)]"
fi