logo

dotfiles

My dotfiles, one branch per machine, rebased on base git clone https://hacktivis.me/git/dotfiles.git
commit: 21559de84e689f0abc1dddc98a14c2c8e2c25bde
parent 1d2b0d4077f0dd41b8dd33d4eb4936a502dc9beb
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat, 19 Feb 2022 01:37:07 +0100

.common.sh: Fix git notes check

Diffstat:

M.common.sh2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.common.sh b/.common.sh @@ -45,7 +45,7 @@ get_git_branch() { ;; esac - if test "$(git notes list | wc -l)" -gt 0 + if git notes list HEAD >/dev/null 2>&1 then notes="🖉" else