1
1
mirror of https://github.com/wader/fq.git synced 2024-11-27 14:14:58 +03:00

cli: Fix indent

This commit is contained in:
Mattias Wadman 2021-08-13 00:55:29 +02:00
parent 78eb73724a
commit 2b8d11db20

View File

@ -440,18 +440,18 @@ def _main:
| _cli_expr_eval($expr; _repl_display)
)
end
)
; # finally
( if _input_io_errors != null then
null | halt_error(_exit_code_input_io_error)
end
| if _input_decode_errors != null then
null | halt_error(_exit_code_input_decode_error)
end
| if _cli_last_expr_error != null then
null | halt_error(_exit_code_expr_error)
end
)
)
; # finally
( if _input_io_errors != null then
null | halt_error(_exit_code_input_io_error)
end
| if _input_decode_errors != null then
null | halt_error(_exit_code_input_decode_error)
end
| if _cli_last_expr_error != null then
null | halt_error(_exit_code_expr_error)
end
)
)
end
);