diff options
author | Ayush Agarwal <ayush@fastmail.in> | 2022-01-17 15:29:17 +0530 |
---|---|---|
committer | Ayush Agarwal <ayush@fastmail.in> | 2022-01-17 15:29:17 +0530 |
commit | 41af86a68745b0984949a86bed06568a0f1f62ab (patch) | |
tree | 9e5002820bf291e07f79541859adcba517ef6f15 /tessen | |
parent | 802a640f965998ddadbed8e04320521b7f6b90c9 (diff) |
fix: return empty value if backend is unrecognized
Diffstat (limited to 'tessen')
-rwxr-xr-x | tessen | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -383,6 +383,10 @@ get_default_opts() { printf "%s" "-d" return 0 ;; + *) + printf "" + return 1 + ;; esac } |