File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Easy-RSA 3 ChangeLog
22
333.2.4 (TBD)
44
5+ * Windows easyrsa-shell-init.sh: Replace 'read -p' (49b2181) (#1371)
56 * inline: Include missing OpenVPN TLS key to cause INCOMPLETE warning (d98eee6) (#1368)
67 * Verbose: Make verbose messages command and function aware (7634b94) (#1368)
78 * CI: Add OpenSSL-3.5.1-LTS and LibreSSL-4.1.0 to private test suite
Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ for f in $extern_list; do
2727 echo " files."
2828 echo " "
2929 # shellcheck disable=SC2162
30- read -p " Press Enter or CTRL-C to exit."
30+ echo " Press Enter to exit."
31+ read
3132 exit 1
3233 fi
3334done
@@ -55,7 +56,8 @@ full administrator privileges via Windows User Access Control."
5556 echo " "
5657
5758 # shellcheck disable=SC2162
58- read -p " Press Enter or CTRL-C to exit."
59+ echo " Press Enter to exit."
60+ read
5961 exit 1
6062}
6163
128130
129131[ -f " $setup_path /easyrsa" ] || {
130132 echo " Missing easyrsa script. Expected to find it at: $setup_path /easyrsa"
131- read -p " Press Enter or CTRL-C to exit."
132- exit 2
133+ echo " Press Enter to exit."
134+ read
135+ exit 1
133136}
134137
135138# Set prompt and welcome message
You can’t perform that action at this time.
0 commit comments