From 2b8d11db20f03508d6698a9d5b63d4c997575b64 Mon Sep 17 00:00:00 2001 From: Mattias Wadman Date: Fri, 13 Aug 2021 00:55:29 +0200 Subject: [PATCH] cli: Fix indent --- pkg/interp/fq.jq | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pkg/interp/fq.jq b/pkg/interp/fq.jq index 98937565..ecd8a3c9 100644 --- a/pkg/interp/fq.jq +++ b/pkg/interp/fq.jq @@ -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 );