diff --git a/scripts/functions.sh b/scripts/functions.sh index f2b87981..955903e5 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? [yes/no]" yn + read -rp "Copy the capture output locally? [yes/no] " yn case $yn in [Yy]* ) copyOutput; break;; [Nn]* ) echo "copy skipped"; break;;