From 0de3d1e814a7acac3184bb1ac2a89bb1df834a77 Mon Sep 17 00:00:00 2001 From: Jorge Morante Date: Fri, 6 Oct 2017 18:50:32 +0200 Subject: [PATCH] add sleep to health-check so it shows up on startup, plus random text changes --- scripts/health-check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/health-check.sh b/scripts/health-check.sh index 65a0da1..8135c41 100755 --- a/scripts/health-check.sh +++ b/scripts/health-check.sh @@ -164,9 +164,8 @@ function perform_health_check() { done log_message "" - log_message "For a better tmux-fingers experience, please install the required versions." + log_message "Follow this link for help on fixing issues:" log_message "" - log_message "For more info check:" log_message " $HELP_LINK" log_message "" log_message "To skip this check add \"set -g @fingers-skip-health-check '1'\" to your tmux conf" @@ -177,6 +176,7 @@ function perform_health_check() { tmux run "cat $health_tmp" fi + sleep 0.5 rm -rf "$health_tmp" }