Skip to content

Commit

Permalink
Nit: better text asking for copying
Browse files Browse the repository at this point in the history
It's conventional and more user-friendly to tell which prompts are
accepted (even if more than that would actually work), so user isn't
worried about typing wrong things

Also, no space before question mark in English
  • Loading branch information
jotak committed Dec 11, 2024
1 parent 01f00d0 commit 31ddfb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;;
Expand Down

0 comments on commit 31ddfb2

Please sign in to comment.