From 5d6e060ff463d5ec0d9022ab6010865f34765445 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 10 Feb 2014 23:46:48 +1300 Subject: Remove some unneeded semicolons --- bash/bashrc.d/prompt.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bash/bashrc.d') diff --git a/bash/bashrc.d/prompt.bash b/bash/bashrc.d/prompt.bash index 95ef4ab6..0214792e 100644 --- a/bash/bashrc.d/prompt.bash +++ b/bash/bashrc.d/prompt.bash @@ -18,10 +18,10 @@ prompt() { # Count available colors, reset, and format (decided shortly) local -i colors=$( { tput Co || tput colors - } 2>/dev/null ); + } 2>/dev/null ) local reset=$( { tput me || tput sgr0 - } 2>/dev/null ); + } 2>/dev/null ) local format # Check if we have non-bold bright green available @@ -66,7 +66,7 @@ prompt() { branch=$( { git symbolic-ref --quiet HEAD \ || git rev-parse --short HEAD - } 2>/dev/null ); + } 2>/dev/null ) if [[ ! $branch ]]; then return 1 fi -- cgit v1.2.3