From cfd35126f1c85f55a7b84fc29413fa2e64f2dbaf Mon Sep 17 00:00:00 2001 From: Dominik Schrempf Date: Sun, 23 Feb 2020 11:03:52 +0100 Subject: [PATCH] remove unused bold variable --- syncthing-resolve-conflicts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syncthing-resolve-conflicts b/syncthing-resolve-conflicts index c8b6617..8047ec6 100755 --- a/syncthing-resolve-conflicts +++ b/syncthing-resolve-conflicts @@ -131,7 +131,7 @@ while [[ -n "$1" ]]; do done # Check if messages are to be printed using color. -unset ALL_OFF BOLD BLUE GREEN RED YELLOW +unset ALL_OFF BLUE GREEN RED YELLOW if [[ -t 2 && $USE_COLOR = "y" ]]; then # Prefer terminal safe colored and bold text when tput is supported. if tput setaf 0 &>/dev/null; then @@ -148,7 +148,7 @@ if [[ -t 2 && $USE_COLOR = "y" ]]; then YELLOW="\\e[1;33m" fi fi -readonly ALL_OFF BOLD BLUE GREEN RED YELLOW +readonly ALL_OFF BLUE GREEN RED YELLOW if [ -z "$(command -v "${diffprog%% *}")" ] && (( ! OUTPUTONLY )); then error "Cannot find the $diffprog binary required for viewing differences."