From 22144d3c227adba425f822700dc2559301ebdeb2 Mon Sep 17 00:00:00 2001 From: Matthew Hillman Date: Mon, 9 Nov 2015 10:04:39 -0600 Subject: [PATCH] =?UTF-8?q?Surround=20all=20variables=20on=20stash=5Fstatu?= =?UTF-8?q?s()=E2=80=99s=20return=20line=20with=20{}=20for=20clarity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- radar-base.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radar-base.sh b/radar-base.sh index f45669e..f4bbc13 100755 --- a/radar-base.sh +++ b/radar-base.sh @@ -539,7 +539,7 @@ stashed_status() { stash_status() { local number_stashes="$(stashed_status)" if [ $number_stashes -gt 0 ]; then - printf $PRINT_F_OPTION "$number_stashes${COLOR_STASH}≡$RESET_COLOR_STASH" + printf $PRINT_F_OPTION "${number_stashes}${COLOR_STASH}≡${RESET_COLOR_STASH}" fi }