From 1eae64b326c1940cf3fe5bcb47733c121e379d30 Mon Sep 17 00:00:00 2001 From: Roman Weiss Date: Thu, 22 Feb 2024 14:18:06 +0100 Subject: [PATCH] git-ps1: remove missing space when showing the "dirty" emoji --- bin/git-ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-ps1 b/bin/git-ps1 index 359a49f..f01e611 100755 --- a/bin/git-ps1 +++ b/bin/git-ps1 @@ -24,6 +24,6 @@ if $DIR/../node_modules/git-state/bin/isgit; then if $DIR/issues; then printf "$tmpl" $branch else - printf "$tmpl" "$branch 👎 " + printf "$tmpl" "$branch 👎" fi fi