diff options
| author | Maria Lisina <sekoohaka.sarisan@gmail.com> | 2025-06-27 04:52:26 +0500 |
|---|---|---|
| committer | Maria Lisina <sekoohaka.sarisan@gmail.com> | 2025-06-27 04:52:26 +0500 |
| commit | 9b6a6df88484cd7c3a91ca896b1674e0b992aa17 (patch) | |
| tree | 4b7c464887e0f4ff5b751b9383e7a1620a0a2ae3 /auth | |
| parent | cb29ca77d123e717191f1584655534d705f48170 (diff) | |
*/*: Update if expression syntax
Signed-off-by: Maria Lisina <sekoohaka.sarisan@gmail.com>
Diffstat (limited to 'auth')
| -rw-r--r-- | auth/donmai.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/donmai.zsh b/auth/donmai.zsh index 5be8255..995957c 100644 --- a/auth/donmai.zsh +++ b/auth/donmai.zsh @@ -38,7 +38,7 @@ then return 0 fi -if [[ "$(jq -r '.success' "${ib_auth_file}")" = "false" ]] +if [[ "$(jq -r '.success' "${ib_auth_file}")" == "false" ]] then output_text="Error: <code>$(jq -r '.message' "${ib_auth_file}" | htmlescape)</code>" log_text="ib_auth (${update_id}): Error: $(jq -r '.message' "${ib_auth_file}")" |
