diff options
| author | Maria Lisina <sekoohaka.sarisan@gmail.com> | 2025-12-30 14:01:06 +0300 |
|---|---|---|
| committer | Maria Lisina <sekoohaka.sarisan@gmail.com> | 2025-12-30 14:01:06 +0300 |
| commit | 420216f69204a6720816ef03cfc73c1fce5a8cf9 (patch) | |
| tree | 03f52dadcd55ece920104f87fcad7d09c4066454 /units/ib_auth.zsh | |
| parent | 7f5c0175e973f2f2795239382446197ebf026515 (diff) | |
*/*: Remove unused return code
Signed-off-by: Maria Lisina <sekoohaka.sarisan@gmail.com>
Diffstat (limited to 'units/ib_auth.zsh')
| -rw-r--r-- | units/ib_auth.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/units/ib_auth.zsh b/units/ib_auth.zsh index 7e713d6..db65754 100644 --- a/units/ib_auth.zsh +++ b/units/ib_auth.zsh @@ -9,7 +9,7 @@ then ib_login="$(< "${login_file}")" else output_text="You must specify ${ib_login_word} and ${ib_key_word}" - return 0 + return fi fi @@ -20,14 +20,14 @@ then ib_key="$(< "${key_file}")" else output_text="You must specify ${ib_key_word}" - return 0 + return fi fi if ! mkdir -p "${auth_dir}" then output_text="Failed to create user config" - return 0 + return fi case "${ib_board}" in |
