From 3cffc4b00b6650894c8f96b7d0c1c9ee487317cf Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sat, 16 Jun 2018 17:29:07 -0700 Subject: Fixes --- me | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'me') diff --git a/me b/me index d944ba2..d0bc972 100755 --- a/me +++ b/me @@ -12,13 +12,13 @@ function usage { function allStatuses { for d in ~/.password-store ~/bin ~/config ~/org ~/web ~/me do - cd "${d}" + cd "${d}" || exit 1 dirname=${d/\/home\/ben/\~} status=$(unbuffer git status -sb | tr -d '#') - printf "%-20s:: %s\n" "${dirname}" "${status}" + printf "%-20s:: %s\\n" "${dirname}" "${status}" done - cd "${cur}" + cd "${cur}" || exit 1 exit 0 } -- cgit v1.2.3