diff --git a/scripts/functions.sh b/scripts/functions.sh index 33dd8787..f2b87981 100755 --- a/scripts/functions.sh +++ b/scripts/functions.sh @@ -145,7 +145,7 @@ function cleanup { copyOutput elif [ "$copy" = "prompt" ]; then while true; do - read -rp "Copy the capture output locally ?" yn + read -rp "Copy the capture output locally? [yes/no]" yn case $yn in [Yy]* ) copyOutput; break;; [Nn]* ) echo "copy skipped"; break;;