diff options
author | Ayush Agarwal <ayushnix@fastmail.com> | 2023-03-22 03:36:18 +0530 |
---|---|---|
committer | Ayush Agarwal <ayushnix@fastmail.com> | 2023-03-22 03:36:18 +0530 |
commit | 79ba777cd2d28c7ca0930667666ec5fe02ea7aa7 (patch) | |
tree | da98fff63658a3c1dcb3b4fac593b778fc42a60a /tessen | |
parent | 6f0b3ef57247f6c5ddebe5cd800163fb279437ab (diff) |
ci: fix shfmt error
Diffstat (limited to 'tessen')
-rwxr-xr-x | tessen | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -323,9 +323,9 @@ key_otp() { _die "invalid OTP detected" fi - if [[ "$1" == "autotype" ]]; then + if [[ $1 == "autotype" ]]; then auto_type "$tmp_otp" - elif [[ "$1" == "copy" ]]; then + elif [[ $1 == "copy" ]]; then wld_copy "$tmp_otp" else key_action "$tmp_otp" |