mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2026-01-19 07:42:11 +08:00
Fix dns_cyon to use correct regex
This commit is contained in:
@@ -332,11 +332,11 @@ _cyon_get_response_message() {
|
||||
}
|
||||
|
||||
_cyon_get_response_status() {
|
||||
_egrep_o '"status":[a-zA-z0-9]*' | cut -d : -f 2
|
||||
_egrep_o '"status":[a-zA-Z0-9]*' | cut -d : -f 2
|
||||
}
|
||||
|
||||
_cyon_get_validation_status() {
|
||||
_egrep_o '"valid":[a-zA-z0-9]*' | cut -d : -f 2
|
||||
_egrep_o '"valid":[a-zA-Z0-9]*' | cut -d : -f 2
|
||||
}
|
||||
|
||||
_cyon_get_response_success() {
|
||||
@@ -344,7 +344,7 @@ _cyon_get_response_success() {
|
||||
}
|
||||
|
||||
_cyon_get_environment_change_status() {
|
||||
_egrep_o '"authenticated":[a-zA-z0-9]*' | cut -d : -f 2
|
||||
_egrep_o '"authenticated":[a-zA-Z0-9]*' | cut -d : -f 2
|
||||
}
|
||||
|
||||
_cyon_check_if_2fa_missed() {
|
||||
|
||||
Reference in New Issue
Block a user