We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dbc412 commit 0bfa8c9Copy full SHA for 0bfa8c9
1 file changed
tools/actions/nominate.sh
@@ -41,7 +41,9 @@ EOF
41
return 1
42
}
43
44
- read -p 'Open the discussion using `gh`? (y/N)' -n 1 -r
+ # shellcheck disable=SC2016
45
+ printf 'Open the discussion using `gh`? (y/N) ' >&2
46
+ read -r REPLY
47
echo
48
if ! ([ "$REPLY" = "y" ] || [ "$REPLY" = "Y" ]); then
49
set +x
0 commit comments