File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Easy-RSA 3 ChangeLog
2
2
3
3
3.2.2 (TBD)
4
4
5
+ * op-test.sh: Disable download ossl3 and shellcheck binaries (473c43b) (#1284)
5
6
* Forbid self-signed certificate from being expired/renewed/revoked (ab45ae7) (#1274)
6
7
* Rename global option --ssl-conf (DEPRECATED) to --ssl-cnf (c788423) (#1270)
7
8
* bugfix: Save and Restore $EASYRSA_SSL_CONF for compound commands (7cdb14d) (#1270)
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ curl_it () {
102
102
# RUN unit test
103
103
run_unit_test ()
104
104
{
105
- if [ " ${utest_bin_ok} " ] && [ " ${ssl_bin_ok} " ] ; then
105
+ if [ " ${utest_bin_ok} " ]; then
106
106
107
107
# Start unit tests
108
108
log " >>> BEGIN unit tests:"
@@ -228,7 +228,8 @@ download_unit_test_help () {
228
228
229
229
# Run shellcheck
230
230
run_shellcheck () {
231
- if [ " $enable_shellcheck " ] && [ " $sc_bin_ok " ] && [ " $EASYRSA_NIX " ]; then
231
+ sc_bin=shellcheck
232
+ if [ " $enable_shellcheck " ] && [ " $EASYRSA_NIX " ]; then
232
233
# shell-check easyrsa3/easyrsa
233
234
if [ -e easyrsa3/easyrsa ]; then
234
235
if " ${sc_bin} " -s sh -S warning -x easyrsa3/easyrsa; then
@@ -397,7 +398,7 @@ while [ -n "$1" ]; do
397
398
-v) verb=' -v' ;;
398
399
-vv) verb=' -vv' ;;
399
400
-sc) enable_shellcheck=1 ;;
400
- -o3) enable_openssl3=1 ;;
401
+ -o3) : ;; # ignored
401
402
-p) use_passwords=' -p' ;;
402
403
-dr) dry_run=1 ;;
403
404
-nt|--no-test) unset -v enable_unit_test ;;
@@ -452,8 +453,8 @@ ssl_hash='SHA256(openssl)= 85b562891087d4c64868d8d1f0a381407d8e23fb66c37ce9baad5
452
453
453
454
# Here we go ..
454
455
455
- download_shellcheck
456
- download_opensslv3
456
+ # download_shellcheck
457
+ # download_opensslv3
457
458
download_unit_test
458
459
download_unit_test_help
459
460
You can’t perform that action at this time.
0 commit comments