Fix spacing

This commit is contained in:
xylous 2021-06-18 23:45:11 +03:00
parent 5b13b77fa3
commit a48e4eaf4f

View File

@ -108,9 +108,9 @@ function get_differences_between_remote_and_local()
local ahead="" behind=""
(( $commits_ahead > 0 )) \
&& ahead="$commits_ahead"
&& ahead=" $commits_ahead"
(( $commits_behind > 0 )) \
&& behind="$commits_behind"
&& behind=" $commits_behind "
typeset -g REPLY="$ahead $behind"
return 0