add sleep to health-check so it shows up on startup, plus random text changes

This commit is contained in:
Jorge Morante 2017-10-06 18:50:32 +02:00
parent 7735ef927b
commit 0de3d1e814
1 changed files with 2 additions and 2 deletions

View File

@ -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"
}