diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-01 22:45:27 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-01 22:45:27 +0100 |
commit | b7c4d89004f6c493fc0acdbf8b26cae1857b4eb1 (patch) | |
tree | 7957784668071dc1ad6face19b50079510284b18 /bin | |
parent | b4b2fac6c902eec50bcededfcfca3fdcd04fd003 (diff) |
fix typo
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/extra/supd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/extra/supd b/bin/extra/supd index 61ea144..9adfcf6 100755 --- a/bin/extra/supd +++ b/bin/extra/supd @@ -27,7 +27,7 @@ do # Show remote state printf '%s %s\n' "$(git status --short 2> /dev/null | awk 'NR==1 {print $1}')" "$(git branch -v 2>/dev/null | - awk -F '[][]' '/^\*/ {print $2}')" | - sed 's/ahead/↑ /;s/behind/↓ /;s/[^↓↑]*/ /g' + awk -F '[][]' '/^\*/ {print $2}' | + sed 's/ahead/↑ /;s/behind/↓ /;s/[^↓↑]*/ /g')" ) done |