Compare commits

...

4 Commits

Author SHA1 Message Date
ivuorinen
cea61a5719 chore(git): Update submodules (automated)
config/nvim v3.33.4
2023-07-19 03:36:20 +00:00
ivuorinen
28c29d94f2 chore(git): Update submodules (automated)
config/nvim v3.33.3
2023-07-18 03:11:59 +00:00
ivuorinen
1028d3847c chore(git): Update submodules (automated)
config/nvim v3.33.1
2023-07-17 03:16:42 +00:00
3498c6b739 fix(tools): update git dirty without parameters 2023-07-13 17:07:18 +03:00
2 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ gitdirty()
if [[ "${d:0:2}" == "--" ]] || [[ "$d" == "vendor" ]] || [[ "$d" == "node_modules" ]]; then
echo ""
else
cd "$d" > /dev/null
cd "$d"
# If we have `.git` folder, check it.
if [[ -d ".git" ]]; then
@@ -58,7 +58,7 @@ gitdirty()
printf " %s %s\n" "$ICON" "$(pwd)"
else
# If it wasn't git repository, check subdirectories.
gitdirtyrepos -- *
gitdirtyrepos ./*
fi
fi
cd .. > /dev/null