Skip to content

Commit

Permalink
<fix>(tools): fix get_account.sh bug when openssl version>3. (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Mar 5, 2024
1 parent 80c1fac commit 849378b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/get_account.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ LOG_INFO()
}

check_env() {
[ ! -z "$(openssl version | grep 1.0.2)" ] || [ ! -z "$(openssl version | grep 1.1)" ] || [ ! -z "$(openssl version | grep reSSL)" ] || {
[ ! -z "$(openssl version | grep 1.0.2)" ] || [ ! -z "$(openssl version | grep 1.1)" ] || [ ! -z "$(openssl version | grep reSSL)" ] || [ ! -z "$(openssl version | grep 3.)" ] {
echo "please install openssl! use \"openssl version\" command to check."
LOG_INFO " Ubuntu : sudo apt install -y openssl"
LOG_INFO " CentOS : sudo yum install -y openssl"
Expand Down

0 comments on commit 849378b

Please sign in to comment.