From dce7209800f5b6d6e81fd4d9293b448bd954e589 Mon Sep 17 00:00:00 2001 From: Jarno Rantanen Date: Tue, 10 Mar 2020 10:31:23 +0200 Subject: [PATCH] Replace high-unicode progress markers with clearer ones. --- docs/image-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/image-setup.sh b/docs/image-setup.sh index 440e13f..3f3331d 100755 --- a/docs/image-setup.sh +++ b/docs/image-setup.sh @@ -36,10 +36,10 @@ function echo-bold { echo -e "$(tput -Txterm-256color bold)$1$(tput -Txterm-256color sgr 0)" # https://unix.stackexchange.com/a/269085; the -T arg accounts for $ENV not being set } function working { - echo-bold "\n✨ $1" + echo-bold "\n[WORKING] $1" } function question { - echo-bold "\n🛑 $1" + echo-bold "\n[QUESTION] $1" } function ssh { /usr/bin/ssh -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout="$SSH_CONNECT_TIMEOUT" "pi@$IP" "$1"