summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--01_Functions.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/01_Functions.zsh b/01_Functions.zsh
index 5d4f16b..f6c99bf 100644
--- a/01_Functions.zsh
+++ b/01_Functions.zsh
@@ -191,6 +191,12 @@ get_git_status ()
then return
fi
+ if [ -f ".repo/manifests.git/config" ]
+ then
+ echo "$git_colors[up_to_date]";
+ return
+ fi
+
if [ "$(git-rev-parse --is-inside-git-dir)" = "true" -o "$(git-config --get core.bare)" = "true" ] ; then
echo "$git_colors[managment_folder]"
return